Skip to content

Instantly share code, notes, and snippets.

@GokuWorks
Created February 9, 2025 03:01
Show Gist options
  • Save GokuWorks/d375fe4a75163aa47b086429f0b0d9d4 to your computer and use it in GitHub Desktop.
Save GokuWorks/d375fe4a75163aa47b086429f0b0d9d4 to your computer and use it in GitHub Desktop.
EplusTV docker compose file with traefik
---
services:
eplustv:
image: m0ngr31/eplustv:latest
container_name: eplustv
restart: unless-stopped
labels:
- traefik.enable=true
- traefik.http.routers.eplustv-https.tls=true
- traefik.http.routers.eplustv-https.tls.certresolver=cloudflare
- traefik.http.routers.eplustv-https.entrypoints=websecure
- traefik.http.routers.eplustv-https.rule=Host(`FQDN`)
- traefik.http.services.eplustv-https.loadbalancer.server.port=8000
- traefik.http.services.eplustv-https.loadbalancer.server.scheme=http
networks:
- frontend
volumes:
- "/opt/eplustv:/app/config"
networks:
frontend:
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment