Merge pull request #2117 from RayBB/vikunja-template

add vikunja service template
This commit is contained in:
Andras Bacsai
2024-05-03 11:18:03 +02:00
committed by GitHub
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
# documentation: https://vikunja.io
# slogan: The open-source, self-hostable to-do app. Organize everything, on all platforms.
# tags: productivity,todo
# logo: svgs/vikunja.svg
# port: 3456
services:
vikunja:
image: vikunja/vikunja
environment:
- SERVICE_FQDN_VIKUNJA
- VIKUNJA_SERVICE_PUBLICURL=$SERVICE_FQDN_VIKUNJA
- VIKUNJA_SERVICE_JWTSECRET=$SERVICE_PASSWORD_JWTSECRET
- VIKUNJA_SERVICE_ENABLEREGISTRATION=true
volumes:
- vikunja-data:/app/vikunja/
healthcheck:
test: ["CMD", "wget", "--spider", "http://localhost:3456"]
interval: 5s
timeout: 20s
retries: 10