1
0
mirror of https://github.com/Adam-Ant/media-server-in-a-box synced 2024-07-11 07:56:11 +00:00
media-server-in-a-box/docker-compose.yml

82 lines
1.7 KiB
YAML
Raw Normal View History

2016-09-08 23:04:14 +00:00
version: '2'
services:
data:
image: tianon/true
volumes:
- $VOLDIR:/config
nzbget:
image: adamant/nzbget
depends_on:
- data
volumes_from:
- data
- container:media
restart: always
deluge:
image: adamant/deluge
depends_on:
- data
volumes_from:
- data
- container:media
restart: always
sickrage:
image: adamant/sickrage
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
couchpotato:
image: adamant/couchpotato
depends_on:
- deluge
- nzbget
volumes_from:
- data
- container:media
restart: always
plex:
image: adamant/alpine-plex
depends_on:
- sickrage
- couchpotato
- headphones
volumes_from:
- data
- container:media
restart: always
ports:
2016-09-13 23:11:28 +00:00
- "1900:1900/udp"
- "3005:3005"
- "5353:5353/udp"
- "8324:8324"
2016-09-08 23:04:14 +00:00
- "32400:32400"
2016-09-13 23:11:28 +00:00
- "32410:32410/udp"
- "32412-32414:32412-32414/udp"
- "32469:32469"
2016-09-08 23:04:14 +00:00
plexpy:
image: adamant/plexpy
depends_on:
- plex
volumes_from:
- data
restart: always
2016-09-13 22:31:48 +00:00
web:
image: nginx:alpine
volumes:
2016-09-13 22:56:44 +00:00
- $VOLDIR/launcher/nginx.cfg:/etc/nginx/conf.d/media.conf
2016-09-13 22:31:48 +00:00
restart: always
2016-09-08 23:04:14 +00:00
ports:
2016-09-13 22:31:48 +00:00
- "80:80"