Added docker-compose reference stack using Traefik as LB

pull/1/head
James Mills 3 years ago
parent dc73a9ac86
commit 3d5f0d22c1
Signed by: prologic
GPG Key ID: AC4C014F1440EBD6

@ -0,0 +1,36 @@
---
version: "3.8"
services:
tube:
image: prologic/tube
command: -c /config.json
configs:
- source: config_json
target: /config.json
networks:
- traefik
volumes:
- tube:/data
deploy:
labels:
- "traefik.enable=true"
- "traefik.port=8000"
- "traefik.backend=tube"
- "traefik.docker.network=traefik"
- "traefik.frontend.rule=Host:tube.mydomain.tld"
restart_policy:
condition: on-failure
replicas: 1
configs:
config_json:
file: ./config.json
networks:
traefik:
external: true
volumes:
tube:
driver: local
Loading…
Cancel
Save