compose
This commit is contained in:
commit
4eedbdbdc8
|
|
@ -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
|
||||
Loading…
Reference in New Issue