avoid unnecessary nested content

This commit is contained in:
Colin Hebert
2023-11-20 09:17:35 +11:00
parent 7b34d3735d
commit 41d64d4b48
46 changed files with 0 additions and 8 deletions

View 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