mirror of
https://gitea.zaclys.com/yannic/selfhosting.git
synced 2026-04-25 17:00:40 +02:00
add baikal recipe
This commit is contained in:
@@ -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/
|
||||
|
||||
@@ -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:
|
||||
Reference in New Issue
Block a user