http3-ytproxy/docker-compose.yml
Fijxu 934e4b381c
All checks were successful
CI / build (push) Successful in 53s
http3 but now in docker for my invidious instance
2024-04-28 14:43:43 -04:00

22 lines
436 B
YAML

# Docker compose file for http3-proxy used in Invidious
services:
http3-proxy:
image: git.nadeko.net/fijxu/http3-proxy:latest
restart: unless-stopped
deploy:
replicas: 6
environment:
DISABLE_WEBP: 1
http3-proxy-nginx:
image: nginx:latest
restart: unless-stopped
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro
depends_on:
- http3-proxy
ports:
- "127.0.0.1:10012:3000"