From 726c0df46a6bdf1f599114e54796019e69593d15 Mon Sep 17 00:00:00 2001 From: Andrea Dell'Amico Date: Tue, 9 Apr 2024 15:44:27 +0200 Subject: [PATCH] Fix the secret name in the compose file. --- templates/shinyproxy-docker-compose.yml.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/shinyproxy-docker-compose.yml.j2 b/templates/shinyproxy-docker-compose.yml.j2 index 4e3c0b8..c74a261 100644 --- a/templates/shinyproxy-docker-compose.yml.j2 +++ b/templates/shinyproxy-docker-compose.yml.j2 @@ -9,7 +9,7 @@ networks: {% if not shinyproxy_docker_mount_conf_file %} secrets: - {{ shinyproxy_as_docker_stack_name }}_{{ shinyproxy_as_docker_service_name }}_application_yml: + {{ shinyproxy_as_docker_stack_name }}_{{ shinyproxy_as_docker_service_name }}: external: true {% endif %} services: @@ -50,7 +50,7 @@ services: {% endif %} {% if not shinyproxy_docker_mount_conf_file %} secrets: - - source: {{ shinyproxy_as_docker_stack_name }}_{{ shinyproxy_as_docker_service_name }}_application_yml + - source: {{ shinyproxy_as_docker_stack_name }}_{{ shinyproxy_as_docker_service_name }} target: {{ shinyproxy_conf_dir }}/application.yml mode: 0444 {% endif %}