Jake Howard
a22f555878
If they update and break, it's not the end of the world, however unlikely it may be
17 lines
520 B
YAML
17 lines
520 B
YAML
version: "2.3"
|
|
services:
|
|
calibre:
|
|
image: linuxserver/calibre-web:latest
|
|
container_name: calibre
|
|
environment:
|
|
- PUID={{ docker_user.id }}
|
|
- PGID={{ docker_user.id }}
|
|
- TZ=Europe/London
|
|
restart: unless-stopped
|
|
volumes:
|
|
- ./config:/config
|
|
- /srv/nextcloud-data/data/jake/files/EBooks:/books:ro
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.routers.calibre.rule=Host(`calibre.jakehoward.tech`)"
|
|
- "traefik.http.routers.calibre.tls.certresolver=le"
|