You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tube/docker-compose.yml

37 lines
641 B

---
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