add baikal recipe
This commit is contained in:
parent
b619f67ac0
commit
bd893fe0eb
2 changed files with 25 additions and 0 deletions
|
@ -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/
|
||||
|
|
24
baikal/docker-compose.baikal.yml
Normal file
24
baikal/docker-compose.baikal.yml
Normal 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:
|
Loading…
Add table
Reference in a new issue