From f2e29f50f289cd4aba2ed75662e99ce057692cbf Mon Sep 17 00:00:00 2001 From: Jesse Bannon Date: Sat, 27 Sep 2025 16:41:34 -0700 Subject: [PATCH] better testing compose file --- docker/testing/docker-compose.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docker/testing/docker-compose.yml b/docker/testing/docker-compose.yml index 604ad5d9..2f85ff53 100644 --- a/docker/testing/docker-compose.yml +++ b/docker/testing/docker-compose.yml @@ -9,8 +9,9 @@ services: PUID: "1000" PGID: "1000" TZ: "America/Los_Angeles" - CRON_SCHEDULE: '"*/1 * * * *"' + CRON_SCHEDULE: '*/1 * * * *' CRON_RUN_ON_START: "true" + UPDATE_YT_DLP_ON_START: "stable" volumes: - "./volumes/ytdl-sub-gui/:/config/" ports: @@ -19,14 +20,15 @@ services: ytdl-sub-headless: build: context: "../" - image: "ytdl-sub-headless:local" + image: "ytdl-sub:local" container_name: "ytdl-sub-headless" environment: PUID: "1000" PGID: "1000" TZ: "America/Los_Angeles" - CRON_SCHEDULE: '"*/1 * * * *"' + CRON_SCHEDULE: '*/1 * * * *' CRON_RUN_ON_START: "true" + UPDATE_YT_DLP_ON_START: "stable" volumes: - "./volumes/ytdl-sub-headless/:/config/" restart: "unless-stopped" @@ -40,8 +42,9 @@ services: PUID: "1000" PGID: "1000" TZ: "America/Los_Angeles" - CRON_SCHEDULE: '"*/1 * * * *"' + CRON_SCHEDULE: '*/1 * * * *' CRON_RUN_ON_START: "true" + UPDATE_YT_DLP_ON_START: "stable" volumes: - "./volumes/ytdl-sub-ubuntu/:/config/" restart: "unless-stopped"