35 lines
712 B
YAML
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
|