add baikal recipe

This commit is contained in:
Yax 2020-07-18 11:37:49 +02:00
parent b619f67ac0
commit bd893fe0eb
2 changed files with 25 additions and 0 deletions

View file

@ -15,6 +15,7 @@ HOST_BLOG=blog
HOST_WALLABAG=wallabag
HOST_SHAARLI=shaarli
HOST_SELFOSS=selfoss
HOST_BAIKAL=baikal
# other
TZ=Europe/Paris
BASIC_AUTH=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/

View file

@ -0,0 +1,24 @@
version: '3'
services:
baikal:
container_name: baikal
image: ckulka/baikal:nginx
networks:
- srv
expose:
- 80
restart: unless-stopped
volumes:
- baikal_data:/var/www/baikal/Specific:rw
- baikal_config:/var/www/baikal/config:rw
labels:
- traefik.enable=true
- traefik.http.routers.baikal.rule=Host(`${HOST_BAIKAL}.${DOMAIN}`)
- traefik.http.routers.baikal.entrypoints=websecure
- traefik.http.routers.baikal.tls=true
- traefik.http.services.baikal.loadbalancer.server.port=80
volumes:
baikal_config:
baikal_data: