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

93 lines
2.0 KiB
YAML
Raw Permalink Normal View History

2016-09-08 23:04:14 +00:00
version: '2'
services:
nzbget:
image: adamant/nzbget
volumes:
- $VOLDIR/nzbget:/config
2016-09-08 23:04:14 +00:00
volumes_from:
- container:media
restart: always
deluge:
image: adamant/deluge
volumes:
- $VOLDIR/deluge:/config
2016-09-08 23:04:14 +00:00
volumes_from:
- container:media
restart: always
2017-05-27 22:10:19 +00:00
hydra:
image: adamant/nzbhydra
volumes:
- $VOLDIR/hydra:/config
restart: always
2016-09-08 23:04:14 +00:00
sickrage:
image: adamant/sickrage
depends_on:
- deluge
- nzbget
volumes:
- $VOLDIR/sickrage:/config
2016-09-08 23:04:14 +00:00
volumes_from:
- container:media
restart: always
2017-06-08 12:50:38 +00:00
radarr:
image: adamant/radarr
2016-09-08 23:04:14 +00:00
depends_on:
- deluge
- nzbget
volumes:
2017-06-08 12:50:38 +00:00
- $VOLDIR/radarr:/config
2016-09-08 23:04:14 +00:00
volumes_from:
- container:media
restart: always
plex:
2017-08-07 12:21:00 +00:00
image: adamant/plexmediaserver:plexpass
2016-09-08 23:04:14 +00:00
depends_on:
- sickrage
2017-08-07 12:21:00 +00:00
- radarr
volumes:
2017-04-09 14:39:30 +00:00
- $VOLDIR/plex:/config/Plex Media Server
2016-09-08 23:04:14 +00:00
volumes_from:
- 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:
- $VOLDIR/plexpy:/config
2016-09-08 23:04:14 +00:00
restart: always
2016-09-13 22:31:48 +00:00
web:
image: nginx:alpine
volumes:
2017-03-02 00:20:03 +00:00
- $VOLDIR/nginx/nginx.cfg:/etc/nginx/conf.d/media.conf
2017-04-08 17:25:01 +00:00
- $VOLDIR/nginx/Organizr:/www
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"
2017-03-01 20:23:35 +00:00
depends_on:
- plexpy
2017-03-02 00:20:03 +00:00
php:
2017-09-25 14:34:49 +00:00
build: php/
2017-03-02 00:20:03 +00:00
working_dir: /www
volumes:
2017-04-08 17:25:01 +00:00
- $VOLDIR/nginx/Organizr:/www
2017-03-02 00:20:03 +00:00