Files
nas-compose/collectors.docker-compose.yml
2023-01-05 07:20:14 +01:00

161 lines
3.3 KiB
YAML

name: Collectors
services:
mylar:
image: linuxserver/mylar3
profiles: [ebooks]
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- gotify
- downloads
volumes:
- mylar_config:/config/
- comics:/comics/
- torrents_completed:/downloads/torrents/
- usenet_completed:/downloads/usenet/
restart: unless-stopped
labels:
traefik.enable: true
lazylibrarian:
image: linuxserver/lazylibrarian
profiles: [ebooks]
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- gotify
- downloads
volumes:
- lazylibrarian_config:/config/
- books:/books/
- torrents_completed:/downloads/torrents/
- usenet_completed:/downloads/usenet/
restart: unless-stopped
labels:
traefik.enable: true
sonarr:
image: linuxserver/sonarr
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- gotify
- downloads
volumes:
- sonarr_config:/config/
- tv:/tv/
- torrents_completed:/downloads/torrents/
- usenet_completed:/downloads/usenet/
restart: unless-stopped
labels:
traefik.enable: true
radarr:
image: linuxserver/radarr
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- gotify
- downloads
volumes:
- radarr_config:/config/
- movies:/movies/
- torrents_completed:/downloads/torrents/
- usenet_completed:/downloads/usenet/
restart: unless-stopped
labels:
traefik.enable: true
bazarr:
image: linuxserver/bazarr
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- gotify
volumes:
- bazarr_config:/config/
- movies:/movies/
- tv:/tv/
restart: unless-stopped
labels:
traefik.enable: true
ombi:
image: linuxserver/ombi
environment:
PUID: ${NASCOMPOSE_UID?}
PGID: ${NASCOMPOSE_GID?}
networks:
- traefik
- downloads
volumes:
- ombi_config:/config/
restart: unless-stopped
labels:
traefik.enable: true
networks:
traefik:
external: true
gotify:
external: true
downloads:
external: true
volumes:
books:
external: true
comics:
external: true
movies:
external: true
tv:
external: true
torrents_completed:
external: true
usenet_completed:
external: true
mylar_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/mylar/config/
lazylibrarian_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/lazylibrarian/config/
sonarr_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/sonarr/config/
radarr_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/radarr/config/
bazarr_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/bazarr/config/
ombi_config:
driver_opts:
type: none
o: bind
device: ${NASCOMPOSE_SERVICES?}/volumes/ombi/config/