docker-compose-configs/invidious/inv_sig_helper_cluster/docker-compose.yml
2024-09-18 04:45:35 -03:00

35 lines
712 B
YAML

services:
inv_sig_helper_cluster:
image: quay.io/invidious/inv-sig-helper
restart: unless-stopped
mem_limit: "512m"
init: true
command: ["--tcp", "0.0.0.0:12999"]
environment:
- RUST_LOG=info
deploy:
replicas: 8
networks:
- invidious
- gluetun_network
- gluetun_network_2
inv_sig_helper_haproxy:
image: haproxy:lts-alpine
restart: always
ports:
- "127.0.0.1:10095:8405"
volumes:
- ./haproxy:/usr/local/etc/haproxy
networks:
- invidious
- gluetun_network
- gluetun_network_2
networks:
invidious:
external: true
gluetun_network:
external: true
gluetun_network_2:
external: true