Files
nas-compose/services/book-collector/docker-compose.yml
Colin Hebert e6775d7ac2 Try readarr
2023-01-22 07:13:03 +01:00

67 lines
1.4 KiB
YAML

name: Book collector
services:
lazylibrarian:
hostname: lazylibrarian
image: linuxserver/lazylibrarian
profiles: [ebooks]
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- reverse-proxy
- torrents
- usenet
volumes:
- lazylibrarian_config:/config/
- data:/data
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.lazylibrarian.middlewares: authelia@file
readarr:
hostname: readarr
image: linuxserver/readarr
profiles: [ebooks]
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- reverse-proxy
- torrents
- usenet
volumes:
- readarr_config:/config/
- data:/data
restart: unless-stopped
labels:
traefik.enable: true
traefik.http.routers.readarr.middlewares: authelia@file
networks:
reverse-proxy:
external: true
torrents:
external: true
usenet:
external: true
volumes:
data:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_DATA?}
lazylibrarian_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/book-collector/volumes/lazylibrarian_config/
readarr_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/book-collector/volumes/readarr_config/