31 lines
723 B
YAML
31 lines
723 B
YAML
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
|