avoid unnecessary nested content
This commit is contained in:
46
book-collector/docker-compose.yml
Normal file
46
book-collector/docker-compose.yml
Normal file
@@ -0,0 +1,46 @@
|
||||
name: book-collector
|
||||
|
||||
services:
|
||||
readarr-audiobook:
|
||||
hostname: readarr-audiobook
|
||||
image: lscr.io/linuxserver/readarr:develop # TODO: Move to a stable version
|
||||
environment:
|
||||
PUID: ${NASCOMPOSE_UID?}
|
||||
PGID: ${NASCOMPOSE_GID?}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
- torrents
|
||||
- usenet
|
||||
volumes:
|
||||
- ${NASCOMPOSE_SERVICES?}/book-collector/volumes/readarr-audiobook_config/:/config/
|
||||
- ${NASCOMPOSE_DATA?}/:/data/
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
traefik.enable: true
|
||||
traefik.http.routers.readarr-audiobook.middlewares: authelia@file
|
||||
|
||||
readarr-ebook:
|
||||
hostname: readarr-ebook
|
||||
image: lscr.io/linuxserver/readarr:develop # TODO: Move to a stable version
|
||||
environment:
|
||||
PUID: ${NASCOMPOSE_UID?}
|
||||
PGID: ${NASCOMPOSE_GID?}
|
||||
networks:
|
||||
- reverse-proxy
|
||||
- torrents
|
||||
- usenet
|
||||
volumes:
|
||||
- ${NASCOMPOSE_SERVICES?}/book-collector/volumes/readarr-ebook_config/:/config/
|
||||
- ${NASCOMPOSE_DATA?}/:/data/
|
||||
restart: unless-stopped
|
||||
labels:
|
||||
traefik.enable: true
|
||||
traefik.http.routers.readarr-ebook.middlewares: authelia@file
|
||||
|
||||
networks:
|
||||
reverse-proxy:
|
||||
external: true
|
||||
torrents:
|
||||
external: true
|
||||
usenet:
|
||||
external: true
|
||||
Reference in New Issue
Block a user