From 78975539eaa5b6649c68cf85367d14a45a5eecf0 Mon Sep 17 00:00:00 2001 From: 3wc <3wc@doesthisthing.work> Date: Sat, 10 Jan 2026 14:47:55 -0500 Subject: [PATCH] fix: Avoid warnings about config names.. ..by renaming the internal names of entrypoint_sh and entrypoint_streaming_sh. Closes #34 --- compose.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compose.yml b/compose.yml index 85eaadb..38be8ff 100644 --- a/compose.yml +++ b/compose.yml @@ -22,10 +22,10 @@ services: - "traefik.http.routers.${STACK_NAME}_web.tls.certresolver=${LETS_ENCRYPT_ENV}" - "coop-cloud.${STACK_NAME}.version=3.0.0+v4.5.4" configs: &configs - - source: entrypoint_sh + - source: entrypoint_conf target: /usr/local/bin/entrypoint.sh mode: 0555 - - source: entrypoint_streaming_sh + - source: entrypoint_streaming_conf target: /usr/local/bin/entrypoint_streaming.sh mode: 0555 entrypoint: &entrypoint /usr/local/bin/entrypoint.sh @@ -222,11 +222,11 @@ networks: external: true configs: - entrypoint_sh: + entrypoint_conf: name: ${STACK_NAME}_entrypoint_conf_${ENTRYPOINT_CONF_VERSION} file: entrypoint.sh.tmpl template_driver: golang - entrypoint_streaming_sh: + entrypoint_streaming_conf: name: ${STACK_NAME}_entrypoint_streaming_conf_${ENTRYPOINT_STREAMING_CONF_VERSION} file: entrypoint-streaming.sh.tmpl template_driver: golang -- 2.49.0