yolk/docker-compose.yaml
Ayo 3f8a381c09
Some checks are pending
ci / ci (push) Waiting to run
build & push docker container / docker (push) Waiting to run
ci / check-provenance (push) Waiting to run
Merge branch 'main' of github.com:ayoayco/elk
2025-11-21 15:27:14 +01:00

15 lines
444 B
YAML

services:
redis:
image: redis:latest
yolk:
image: ayoayco/yolk:latest
build:
context: .
dockerfile: Dockerfile
volumes:
# make sure this directory has the same ownership as the elk user from the Dockerfile
# otherwise Elk will not be able to store configs for accounts
# e.g., mkdir ./elk-storage; sudo chown 911:911 ./elk-storage
- './elk-storage:/elk/data'
ports:
- 5314:5314