From 729fb5c690aae5bbba69c365eca89c451e85f683 Mon Sep 17 00:00:00 2001 From: gabek Date: Wed, 12 Mar 2025 23:43:30 +0000 Subject: [PATCH] Update Owncast service definition - Point at the modern Docker image organization - Enable healthcheck via the /api/status endpoint --- compose.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/compose.yml b/compose.yml index 2391e20..375ae7d 100644 --- a/compose.yml +++ b/compose.yml @@ -3,7 +3,7 @@ version: "3.8" services: app: - image: gabekangas/owncast:0.2.1 + image: owncast/owncast:0.2.1 networks: - proxy volumes: @@ -22,12 +22,12 @@ services: - "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 + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8080/api/status"] + interval: 30s + timeout: 10s + retries: 10 + start_period: 1m networks: proxy: