compose/vikunja/docker-compose.yml

20 lines
727 B
YAML
Raw Normal View History

version: '3'
services:
vikunja:
2024-09-19 18:29:50 -03:00
image: vikunja/vikunja:latest
container_name: vikunja
environment:
VIKUNJA_SERVICE_PUBLICURL: https://vikunja.shoebottom.ca/
VIKUNJA_SERVICE_ENABLEREGISTRATION: false
# Note the default path is /app/vikunja/vikunja.db.
2024-06-14 16:26:19 -03:00
# This config variable moves it to a different folder so you can use a volume and
# store the database file outside the container so state is persisted even if the container is destroyed.
VIKUNJA_DATABASE_PATH: /db/vikunja.db
ports:
- 3456:3456
volumes:
- /docker/appdata/vikunja/files:/app/vikunja/files
- /docker/appdata/vikunja/db:/db
restart: unless-stopped
2024-05-31 21:01:21 -03:00
env_file:
2024-05-31 21:14:27 -03:00
- ../stack.env