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

89 lines
1.9 KiB
YAML
Raw 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
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
couchpotato:
image: adamant/couchpotato
depends_on:
- deluge
- nzbget
volumes:
- $VOLDIR/couchpotato:/config
2016-09-08 23:04:14 +00:00
volumes_from:
- container:media
restart: always
plex:
image: adamant/alpine-plex
depends_on:
- sickrage
- couchpotato
volumes:
- $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_from:
- data
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-03-02 01:13:09 +00:00
image: php:7.0-fpm-alpine
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