Compare commits

...

2 Commits

Author SHA1 Message Date
James Wampler
62c41efba1 Vikunja config 2026-07-01 16:19:56 -07:00
James Wampler
35ff816395 feat(vikunja): add Vikunja task manager at tasks.wampler.us
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-24 10:10:00 -07:00
2 changed files with 36 additions and 0 deletions

View File

@@ -73,6 +73,12 @@
encode gzip
reverse_proxy calibre-web:8083
}
@vikunja host tasks.wampler.us
handle @vikunja {
encode gzip
reverse_proxy vikunja:3456
}
}
localhost {

30
vikunja/compose.yml Normal file
View File

@@ -0,0 +1,30 @@
services:
vikunja:
image: vikunja/vikunja:0.24.6
container_name: vikunja
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=America/Los_Angeles
- VIKUNJA_SERVICE_PUBLICURL=https://tasks.wampler.us
volumes:
- /mnt/storage/apps/vikunja/files:/app/vikunja/files
- /mnt/storage/apps/vikunja/db:/db
healthcheck:
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3456/api/v1/info"]
interval: 30s
timeout: 10s
retries: 3
start_period: 30s
deploy:
resources:
limits:
memory: 512M
cpus: '0.5'
networks:
- network
networks:
network:
name: proxy
external: true