97 lines
1.9 KiB
YAML
97 lines
1.9 KiB
YAML
version: '3'
|
|
services:
|
|
radarr:
|
|
restart: unless-stopped
|
|
container_name: radarr
|
|
volumes:
|
|
- ${DATADIRROOT}/radarr:/config
|
|
- ${DOWNLOADDIR}:/downloads
|
|
- ${MOVIESDIR}:/movies
|
|
env_file:
|
|
- stack.env
|
|
image: linuxserver/radarr
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
prowlarr:
|
|
image: ghcr.io/linuxserver/prowlarr:develop
|
|
container_name: prowlarr
|
|
env_file:
|
|
- stack.env
|
|
volumes:
|
|
- ${DATADIRROOT}/prowlarr:/config
|
|
restart: unless-stopped
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
sonarr:
|
|
restart: unless-stopped
|
|
container_name: sonarr
|
|
volumes:
|
|
- ${DATADIRROOT}/sonarr:/config
|
|
- ${DOWNLOADDIR}:/downloads
|
|
- ${TVDIR}:/tv
|
|
env_file:
|
|
- stack.env
|
|
image: linuxserver/sonarr
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
overseerr:
|
|
image: ghcr.io/linuxserver/overseerr
|
|
container_name: overseerr
|
|
env_file:
|
|
- stack.env
|
|
volumes:
|
|
- ${DATADIRROOT}/overseerr:/config
|
|
restart: unless-stopped
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
transmission:
|
|
image: ghcr.io/linuxserver/transmission
|
|
container_name: transmission
|
|
hostname: transmission
|
|
env_file:
|
|
- stack.env
|
|
|
|
volumes:
|
|
- ${DATADIRROOT}/transmission:/config
|
|
- ${DOWNLOADDIR}:/downloads
|
|
- /home/lino/Downloads:/watch
|
|
ports:
|
|
- 51413:51413
|
|
- 51413:51413/udp
|
|
restart: unless-stopped
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
# lidarr:
|
|
# image: ghcr.io/linuxserver/lidarr
|
|
# container_name: lidarr
|
|
# env_file:
|
|
# - stack.env
|
|
# volumes:
|
|
# - ${DATADIRROOT}/lidarr:/config
|
|
# - ${MUSICDIR}:/music #optional
|
|
# - ${DOWNLOADDIR}:/downloads #optional
|
|
# restart: unless-stopped
|
|
# networks:
|
|
# - reverse-proxy
|
|
|
|
bazarr:
|
|
image: lscr.io/linuxserver/bazarr
|
|
container_name: bazarr
|
|
env_file:
|
|
- stack.env
|
|
volumes:
|
|
- ${DATADIRROOT}/bazaar/config:/config
|
|
- ${MOVIESDIR}:/movies
|
|
- ${TVDIR}:/tv
|
|
restart: unless-stopped
|
|
networks:
|
|
- reverse-proxy
|
|
|
|
networks:
|
|
reverse-proxy:
|
|
external: true |