This commit is contained in:
Jonas Legion 2021-08-30 10:43:01 +02:00
commit 4eedbdbdc8
1 changed files with 28 additions and 0 deletions

28
docker-compose.yml Normal file
View File

@ -0,0 +1,28 @@
version: '3'
services:
kanboard:
image: kanboard/kanboard:latest
restart: always
volumes:
- ./kanboard_data:/var/www/app/data
- ./kanboard_plugins:/var/www/app/plugins
- ./kanboard_ssl:/etc/nginx/ssl
networks:
- frontend
labels:
- traefik.enable=true
- traefik.docker.network=frontend
- traefik.http.routers.kanboard.tls.certresolver=myresolver
- traefik.http.routers.kanboard.rule=Host(`kanboard.tierslieux.re`)
deploy:
resources:
limits:
cpus: 2
memory: 512M
networks:
frontend:
external: true