Files
iptv-proxy/traefik/docker-compose.yml
Pierre-Emmanuel Jacquier 5dc93e3656 Update readme
Signed-off-by: Pierre-Emmanuel Jacquier <15922119+pierre-emmanuelJ@users.noreply.github.com>
2021-03-26 17:21:56 +01:00

41 lines
1.1 KiB
YAML

version: "3"
services:
iptv-proxy:
build:
context: .
dockerfile: Dockerfile
volumes:
- ./iptv:/root/iptv
container_name: "iptv-proxy"
restart: on-failure
labels:
- "traefik.enable=true"
- "traefik.http.routers.iptv-proxy.rule=Host(`iptv.proxyexample.xyz`)"
- "traefik.http.routers.iptv-proxy.entrypoints=websecure"
- "traefik.http.routers.iptv-proxy.tls.certresolver=mydnschallenge"
- "traefik.http.services.iptv-proxy.loadbalancer.server.port=8080"
environment:
M3U_URL: /root/iptv/iptv.m3u
PORT: 8080
ADVERTISED_PORT: 443
HOSTNAME: iptv.proxyexample.xyz
GIN_MODE: release
HTTPS: 1
XTREAM_USER: xtream_user
XTREAM_PASSWORD: xtream_password
XTREAM_BASE_URL: "http://example.tv:1234"
USER: test
PASSWORD: testpassword
traefik:
restart: always
image: traefik:v2.4
read_only: true
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
- ./Traefik/traefik.yaml:/traefik.yaml:ro
- ./Traefik/etc/traefik:/etc/traefik/
- ./Traefik/log:/var/log/traefik/