Added Vikunja a task platform

This commit is contained in:
Shaun Collins
2026-04-18 12:32:34 +01:00
parent cd4796e709
commit 3eaf4859c6
6 changed files with 34 additions and 7 deletions
+5
View File
@@ -0,0 +1,5 @@
up:
docker-compose up -d
down:
docker-compose down
+20
View File
@@ -0,0 +1,20 @@
services:
vikunja:
image: vikunja/vikunja:2.3.0
container_name: vikunja
environment:
VIKUNJA_SERVICE_PUBLICURL: https:/tasks.shaunc.co.uk/
VIKUNJA_SERVICE_JWTSECRET: 4c9faad669e44f47d4055631403ba93ffa978f20015e45ab2e79b83daccc6f5a
VIKUNJA_DATABASE_PATH: /db/vikunja.db
ports:
- 3456:3456
# healthcheck:
# test: ["CMD", "wget", "--no-verbose", "--tries=1", "--spider", "http://localhost:3456/api/v1/docs.json"]
# interval: 30s
# timeout: 5s
# start_period: 40s
# retries: 3
volumes:
- ./files:/app/vikunja/files
- ./db:/db
restart: unless-stopped