homelab/seedbox/config/monitoring/docker-compose.yml

69 lines
1.9 KiB
YAML
Raw Normal View History

2022-05-02 10:00:30 -07:00
version: '3'
services:
deluge-exporter_ggn:
image: tobbez/deluge_exporter:latest
container_name: monitoring_deluge-exporter_ggn
2022-05-02 16:22:55 -07:00
networks:
2022-05-02 16:42:09 -07:00
- deluge_deluge
2022-05-02 10:00:30 -07:00
ports:
2022-05-02 16:22:55 -07:00
- 53000:9354
2022-05-02 16:47:13 -07:00
environment:
- DELUGE_HOST=172.25.0.20
- LISTEN_ADDRESS=0.0.0.0
2022-05-02 17:05:15 -07:00
- DELUGE_PORT=58846
2022-05-02 16:56:19 -07:00
- DELUGE_USER=localclient
2022-05-02 17:14:32 -07:00
#- DELUGE_PASSWORD=deluge
2022-05-02 16:57:34 -07:00
volumes:
- $DOCKER_DATA/deluge/ggn:/root/.config/deluge/
2022-05-02 16:22:55 -07:00
deluge-exporter_mam:
image: tobbez/deluge_exporter:latest
container_name: monitoring_deluge-exporter_mam
networks:
2022-05-02 16:42:09 -07:00
- deluge_deluge
2022-05-02 16:22:55 -07:00
ports:
- 53100:9354
2022-05-02 16:47:13 -07:00
environment:
- DELUGE_HOST=172.25.0.21
- LISTEN_ADDRESS=0.0.0.0
2022-05-02 17:05:15 -07:00
- DELUGE_PORT=58846
2022-05-02 16:56:19 -07:00
- DELUGE_USER=localclient
2022-05-02 17:14:32 -07:00
#- DELUGE_PASSWORD=deluge
2022-05-02 16:57:34 -07:00
volumes:
- $DOCKER_DATA/deluge/mam:/root/.config/deluge/
2022-05-02 16:22:55 -07:00
2022-05-02 16:36:41 -07:00
deluge-exporter_emp:
image: tobbez/deluge_exporter:latest
container_name: monitoring_deluge-exporter_emp
networks:
2022-05-02 16:42:09 -07:00
- deluge_deluge
2022-05-02 16:36:41 -07:00
ports:
- 53200:9354
2022-05-02 16:47:13 -07:00
environment:
- DELUGE_HOST=172.25.0.22
- LISTEN_ADDRESS=0.0.0.0
2022-05-02 17:05:15 -07:00
- DELUGE_PORT=58846
2022-05-02 16:56:19 -07:00
- DELUGE_USER=localclient
2022-05-02 17:14:32 -07:00
#- DELUGE_PASSWORD=deluge
2022-05-02 16:57:34 -07:00
volumes:
- $DOCKER_DATA/deluge/emp:/root/.config/deluge/
2022-05-02 16:36:41 -07:00
2022-05-02 16:22:55 -07:00
deluge-exporter_pub:
image: tobbez/deluge_exporter:latest
container_name: monitoring_deluge-exporter_pub
networks:
2022-05-02 16:42:09 -07:00
- deluge_deluge
2022-05-02 16:22:55 -07:00
ports:
- 53300:9354
2022-05-02 16:47:13 -07:00
environment:
- DELUGE_HOST=172.25.0.23
- LISTEN_ADDRESS=0.0.0.0
2022-05-02 17:05:15 -07:00
- DELUGE_PORT=58846
2022-05-02 16:56:19 -07:00
- DELUGE_USER=localclient
2022-05-02 17:14:32 -07:00
#- DELUGE_PASSWORD=deluge
2022-05-02 16:57:34 -07:00
volumes:
- $DOCKER_DATA/deluge/pub:/root/.config/deluge/
2022-05-02 16:22:55 -07:00
networks:
2022-05-02 16:42:09 -07:00
deluge_deluge:
2022-05-02 16:22:55 -07:00
external: true