38 lines
1.1 KiB
YAML
38 lines
1.1 KiB
YAML
---
|
|
version: "3.8"
|
|
|
|
services:
|
|
app:
|
|
image: gabekangas/owncast:0.2.1
|
|
networks:
|
|
- proxy
|
|
volumes:
|
|
- owncast:/app/data
|
|
deploy:
|
|
restart_policy:
|
|
condition: on-failure
|
|
labels:
|
|
- "traefik.enable=true"
|
|
- "traefik.http.services.${STACK_NAME}.loadbalancer.server.port=8080"
|
|
- "traefik.http.routers.${STACK_NAME}.rule=Host(`${DOMAIN}`${EXTRA_DOMAINS})"
|
|
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
|
|
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
|
|
- "traefik.tcp.routers.${STACK_NAME}-rtmp.rule=HostSNI(`*`)"
|
|
- "traefik.tcp.routers.${STACK_NAME}-rtmp.entrypoints=peertube-rtmp"
|
|
- "traefik.tcp.routers.${STACK_NAME}-rtmp.service=${STACK_NAME}-rtmp"
|
|
- "traefik.tcp.services.${STACK_NAME}-rtmp.loadbalancer.server.port=1935"
|
|
- "coop-cloud.${STACK_NAME}.version=0.3.0+0.2.1"
|
|
# healthcheck:
|
|
# test: ["CMD", "curl", "-f", "http://localhost"]
|
|
# interval: 30s
|
|
# timeout: 10s
|
|
# retries: 10
|
|
# start_period: 1m
|
|
|
|
networks:
|
|
proxy:
|
|
external: true
|
|
|
|
volumes:
|
|
owncast:
|