Migration to newer dockge/compose stack

This commit is contained in:
Colin Hebert
2024-09-26 15:59:37 +02:00
parent 1d52e2ac75
commit dfe252e945
104 changed files with 752 additions and 666 deletions

View File

@@ -1,42 +1,41 @@
name: book-collector
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
name: book-collector
services:
readarr-audiobook:
hostname: readarr-audiobook
extends:
file: ../compose.base.yaml
service: exposed-service
container_name: 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/
- ./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
extends:
file: ../compose.base.yaml
service: exposed-service
container_name: 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/
- ./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