Created
January 25, 2023 02:53
-
-
Save jibsaramnim/05c0dfafa14f73f4e68731beb5eb4b4d to your computer and use it in GitHub Desktop.
Elk Docker/Podman Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
elk: | |
image: ghcr.io/elk-zone/elk:latest | |
labels: | |
- io.containers.autoupdate=registry | |
environment: | |
- TZ=Asia/Seoul | |
- NUXT_PUBLIC_DEFAULT_SERVER=fosstodon.org | |
volumes: | |
- elk-data:/elk/data | |
ports: | |
- 5314:5314/tcp | |
restart: unless-stopped | |
volumes: | |
elk-data: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment