mirror of
https://github.com/Adam-Ant/media-server-in-a-box
synced 2024-12-20 14:44:34 +00:00
Cleanup dockerfiles, add noproxy file for first time configuration
This commit is contained in:
parent
c23874648d
commit
50b70a3439
80
docker-compose.noproxy.yml
Normal file
80
docker-compose.noproxy.yml
Normal file
@ -0,0 +1,80 @@
|
|||||||
|
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"
|
||||||
|
|
||||||
|
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"
|
@ -44,17 +44,6 @@ services:
|
|||||||
- container:media
|
- container:media
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
radarr:
|
|
||||||
image: adamant/radarr
|
|
||||||
depends_on:
|
|
||||||
- deluge
|
|
||||||
- nzbget
|
|
||||||
volumes_from:
|
|
||||||
- data
|
|
||||||
- container:media
|
|
||||||
restart: always
|
|
||||||
ports:
|
|
||||||
- "7878:7878"
|
|
||||||
plex:
|
plex:
|
||||||
image: adamant/alpine-plex
|
image: adamant/alpine-plex
|
||||||
depends_on:
|
depends_on:
|
||||||
@ -75,7 +64,6 @@ services:
|
|||||||
- "32412-32414:32412-32414/udp"
|
- "32412-32414:32412-32414/udp"
|
||||||
- "32469:32469"
|
- "32469:32469"
|
||||||
|
|
||||||
|
|
||||||
plexpy:
|
plexpy:
|
||||||
image: adamant/plexpy
|
image: adamant/plexpy
|
||||||
depends_on:
|
depends_on:
|
||||||
|
Loading…
Reference in New Issue
Block a user