shaarli
This commit is contained in:
parent
b27fc29197
commit
fe69b06a4d
2 changed files with 21 additions and 0 deletions
|
@ -13,6 +13,7 @@ HOST_MAIL=mail
|
||||||
HOST_SEAFILE=seafile
|
HOST_SEAFILE=seafile
|
||||||
HOST_BLOG=blog
|
HOST_BLOG=blog
|
||||||
HOST_WALLABAG=wallabag
|
HOST_WALLABAG=wallabag
|
||||||
|
HOST_SHAARLI=shaarli
|
||||||
# other
|
# other
|
||||||
TZ=Europe/Paris
|
TZ=Europe/Paris
|
||||||
BASIC_AUTH=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/
|
BASIC_AUTH=test:$$apr1$$H6uskkkW$$IgXLP6ewTrSuBkTrqE8wj/
|
||||||
|
|
20
shaarli/docker-compose.shaarli.yml
Normal file
20
shaarli/docker-compose.shaarli.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
version: '3'
|
||||||
|
|
||||||
|
services:
|
||||||
|
shaarli:
|
||||||
|
container_name: shaarli
|
||||||
|
image: shaarli/shaarli
|
||||||
|
volumes:
|
||||||
|
- shaarli-cache:/var/www/shaarli/cache
|
||||||
|
- ${ROOT_INSTALL}/data/shaarli:/var/www/shaarli/data
|
||||||
|
networks:
|
||||||
|
- srv
|
||||||
|
restart: unless-stopped
|
||||||
|
expose:
|
||||||
|
- 80
|
||||||
|
labels:
|
||||||
|
- traefik.enable=true
|
||||||
|
- traefik.http.routers.shaarli.rule=Host(`${HOST_SHAARLI}.${DOMAIN}`)
|
||||||
|
- traefik.http.routers.shaarli.entrypoints=websecure
|
||||||
|
- traefik.http.routers.shaarli.tls=true
|
||||||
|
- traefik.http.services.shaarli.loadbalancer.server.port=80
|
Loading…
Add table
Reference in a new issue