Attempted networking rework
This commit is contained in:
parent
2020178f50
commit
8716790227
6
seedbox/config/deluge/.env
Normal file
6
seedbox/config/deluge/.env
Normal file
@ -0,0 +1,6 @@
|
||||
DOCKER_DATA=/home/joey/data/deluge
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=America/Los_Angeles
|
||||
UMASK_SET=022
|
||||
DELUGE_LOGLEVEL=info
|
78
seedbox/config/deluge/docker-compose.yml
Normal file
78
seedbox/config/deluge/docker-compose.yml
Normal file
@ -0,0 +1,78 @@
|
||||
version: '3'
|
||||
services:
|
||||
deluge-ggn:
|
||||
image: linuxserver/deluge
|
||||
container_name: deluge_ggn
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.20
|
||||
restart: "no"
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 52000:8112
|
||||
- 51000:58946
|
||||
- 51000:58946/udp
|
||||
volumes:
|
||||
- $DOCKER_DATA/ggn:/config
|
||||
- /mnt/torrenting/GGN/0:/downloads
|
||||
- /mnt/torrenting/GGN/0T:/watch
|
||||
|
||||
deluge-mam:
|
||||
image: linuxserver/deluge:amd64-2.0.0-0201906082034ubuntu18.04.1-ls23
|
||||
container_name: deluge_mam
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.21
|
||||
restart: "no"
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 52100:8112
|
||||
- 51100:51100
|
||||
- 51100:51100/udp
|
||||
volumes:
|
||||
- $DOCKER_DATA/mam:/config
|
||||
- /mnt/torrenting/MAM/0:/downloads
|
||||
- /mnt/torrenting/MAM/0T:/watch
|
||||
|
||||
deluge-emp:
|
||||
image: linuxserver/deluge
|
||||
container_name: deluge_emp
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.22
|
||||
restart: "no"
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 52200:8112
|
||||
- 51200:58946
|
||||
- 51200:58946/udp
|
||||
volumes:
|
||||
- $DOCKER_DATA/emp:/config
|
||||
- /mnt/torrenting/EMP/0:/downloads
|
||||
- /mnt/torrenting/EMP/0T:/watch
|
||||
|
||||
|
||||
|
||||
deluge-pub:
|
||||
image: linuxserver/deluge
|
||||
container_name: deluge_pub
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.23
|
||||
restart: "no"
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 52300:8112
|
||||
- 51300:58946
|
||||
- 51300:58946/udp
|
||||
volumes:
|
||||
- $DOCKER_DATA/pub:/config
|
||||
- /mnt/torrenting/PUB/0:/downloads
|
||||
- /mnt/torrenting/PUB/0T:/watch
|
||||
|
||||
networks:
|
||||
deluge:
|
@ -1,28 +1,14 @@
|
||||
version: '3'
|
||||
services:
|
||||
deluge-exporter_emp:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_emp
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.30
|
||||
ports:
|
||||
- 53200:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.20
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/emp:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_ggn:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_ggn
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.31
|
||||
- deluge
|
||||
ports:
|
||||
- 53000:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.21
|
||||
- DELUGE_HOST=172.25.0.20
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/ggn:/root/.config/deluge/
|
||||
|
||||
@ -30,21 +16,31 @@ services:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_mam
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.32
|
||||
- deluge
|
||||
ports:
|
||||
- 53100:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.22
|
||||
- DELUGE_HOST=172.25.0.21
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/mam:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_emp:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_emp
|
||||
networks:
|
||||
- deluge
|
||||
ports:
|
||||
- 53200:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.22
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/emp:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_pub:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_pub
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.33
|
||||
- deluge
|
||||
ports:
|
||||
- 53300:9354
|
||||
environment:
|
||||
|
Loading…
Reference in New Issue
Block a user