-
-
Notifications
You must be signed in to change notification settings - Fork 326
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
30 lines (28 loc) · 764 Bytes
/
docker-compose.yml
File metadata and controls
30 lines (28 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
shiori:
image: nicholaswilde/shiori:latest
container_name: shiori
environment:
- TZ=Europe/Berlin
- PUID=1000
- PGID=1000
- SHIORI_DIR=/data
expose:
- 8080
ports:
- 8080:8080
restart: unless-stopped
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/shiori/data:/data
#networks:
# - proxy
#labels:
# - traefik.enable=true
# - traefik.docker.network=proxy
# - traefik.http.routers.shiori.rule=Host(`shiori.example.com`)
# - traefik.http.services.shiori.loadbalancer.server.port=8080
# # Part for optional traefik middlewares
# - traefik.http.routers.shiori.middlewares=local-ipwhitelist@file
#networks:
# proxy:
# external: true