Spin down Deluge and monitoring sidecars
This commit is contained in:
parent
4fcc9e7374
commit
05ba0b1eb9
@ -1,6 +0,0 @@
|
||||
DOCKER_DATA=/home/joey/data/deluge
|
||||
PUID=1000
|
||||
PGID=1000
|
||||
TZ=America/Los_Angeles
|
||||
UMASK_SET=022
|
||||
DELUGE_LOGLEVEL=info
|
@ -1,4 +0,0 @@
|
||||
## Create a Torrent File
|
||||
On Windows, use qBitTorrent's [Torrent Creator](https://www.ghacks.net/2019/09/20/how-to-create-a-private-torrent-using-qbittorrent/)
|
||||
On Linux (CLI), use [`ctorrent`](http://manpages.ubuntu.com/manpages/bionic/man1/ctorrent.1.html). (Like: `ctorrent -t -s output_file.torrent /path/to/source/dir`)
|
||||
|
@ -1,102 +0,0 @@
|
||||
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
|
||||
- 58846
|
||||
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
|
||||
- 58846
|
||||
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
|
||||
- 58846
|
||||
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
|
||||
- 58846
|
||||
volumes:
|
||||
- $DOCKER_DATA/pub:/config
|
||||
- /mnt/torrenting/PUB/0:/downloads
|
||||
- /mnt/torrenting/PUB/0T:/watch
|
||||
|
||||
deluge-red:
|
||||
image: linuxserver/deluge
|
||||
container_name: deluge_red
|
||||
networks:
|
||||
deluge:
|
||||
ipv4_address: 172.25.0.24
|
||||
restart: "no"
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
- 52400:8112
|
||||
- 51400:58946
|
||||
- 51400:58946/udp
|
||||
- 58846
|
||||
volumes:
|
||||
- $DOCKER_DATA/red:/config
|
||||
- /mnt/torrenting/RED/0:/downloads
|
||||
- /mnt/torrenting/RED/0T:/watch
|
||||
|
||||
networks:
|
||||
deluge:
|
||||
ipam:
|
||||
config:
|
||||
- subnet: 172.25.0.0/24
|
@ -1 +0,0 @@
|
||||
DOCKER_DATA=/home/joey/data
|
@ -1,85 +0,0 @@
|
||||
version: '3'
|
||||
services:
|
||||
deluge-exporter_ggn:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_ggn
|
||||
networks:
|
||||
- deluge_deluge
|
||||
ports:
|
||||
- 53000:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.20
|
||||
- LISTEN_ADDRESS=0.0.0.0
|
||||
- DELUGE_PORT=58846
|
||||
- DELUGE_USER=localclient
|
||||
#- DELUGE_PASSWORD=deluge
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/ggn:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_mam:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_mam
|
||||
networks:
|
||||
- deluge_deluge
|
||||
ports:
|
||||
- 53100:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.21
|
||||
- LISTEN_ADDRESS=0.0.0.0
|
||||
- DELUGE_PORT=58846
|
||||
- DELUGE_USER=localclient
|
||||
#- DELUGE_PASSWORD=deluge
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/mam:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_emp:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_emp
|
||||
networks:
|
||||
- deluge_deluge
|
||||
ports:
|
||||
- 53200:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.22
|
||||
- LISTEN_ADDRESS=0.0.0.0
|
||||
- DELUGE_PORT=58846
|
||||
- DELUGE_USER=localclient
|
||||
#- DELUGE_PASSWORD=deluge
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/emp:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_pub:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_pub
|
||||
networks:
|
||||
- deluge_deluge
|
||||
ports:
|
||||
- 53300:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.23
|
||||
- LISTEN_ADDRESS=0.0.0.0
|
||||
- DELUGE_PORT=58846
|
||||
- DELUGE_USER=localclient
|
||||
#- DELUGE_PASSWORD=deluge
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/pub:/root/.config/deluge/
|
||||
|
||||
deluge-exporter_red:
|
||||
image: tobbez/deluge_exporter:latest
|
||||
container_name: monitoring_deluge-exporter_red
|
||||
networks:
|
||||
- deluge_deluge
|
||||
ports:
|
||||
- 53400:9354
|
||||
environment:
|
||||
- DELUGE_HOST=172.25.0.24
|
||||
- LISTEN_ADDRESS=0.0.0.0
|
||||
- DELUGE_PORT=58846
|
||||
- DELUGE_USER=localclient
|
||||
#- DELUGE_PASSWORD=deluge
|
||||
volumes:
|
||||
- $DOCKER_DATA/deluge/pub:/root/.config/deluge/
|
||||
|
||||
networks:
|
||||
deluge_deluge:
|
||||
external: true
|
Loading…
x
Reference in New Issue
Block a user