mirror of
https://github.com/Adam-Ant/media-server-in-a-box
synced 2024-11-14 16:26:21 +00:00
104 lines
2.1 KiB
YAML
104 lines
2.1 KiB
YAML
version: '2'
|
|
|
|
services:
|
|
data:
|
|
image: tianon/true
|
|
volumes:
|
|
- $VOLDIR:/config
|
|
|
|
nzbget:
|
|
image: adamant/nzbget
|
|
depends_on:
|
|
- data
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "6789:6789"
|
|
|
|
deluge:
|
|
image: adamant/deluge
|
|
depends_on:
|
|
- data
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "8112:8112"
|
|
- "58846:58846"
|
|
- "53160:53160"
|
|
- "53160:53160/udp"
|
|
|
|
sickrage:
|
|
image: adamant/sickrage
|
|
depends_on:
|
|
- deluge
|
|
- nzbget
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "8081:8081"
|
|
|
|
couchpotato:
|
|
image: adamant/couchpotato
|
|
depends_on:
|
|
- deluge
|
|
- nzbget
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "5050:5050"
|
|
|
|
headphones:
|
|
image: adamant/headphones
|
|
depends_on:
|
|
- deluge
|
|
- nzbget
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "8181:8181"
|
|
|
|
radarr:
|
|
image: adamant/radarr
|
|
depends_on:
|
|
- deluge
|
|
- nzbget
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
ports:
|
|
- "7878:7878"
|
|
plex:
|
|
image: adamant/alpine-plex
|
|
depends_on:
|
|
- sickrage
|
|
- couchpotato
|
|
- headphones
|
|
volumes_from:
|
|
- data
|
|
- container:media
|
|
restart: always
|
|
network_mode: "host"
|
|
ports:
|
|
- "32400:32400"
|
|
|
|
plexpy:
|
|
image: adamant/plexpy
|
|
depends_on:
|
|
- plex
|
|
volumes_from:
|
|
- data
|
|
restart: always
|
|
ports:
|
|
- "8182:8181"
|