This commit is contained in:
Moritz 2023-10-03 18:19:43 +02:00
parent 1f06af95eb
commit 6fc62b5516
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ def copy_secrets(apps):
for s in services:
app_name = s.attrs['Spec']['Labels']['com.docker.stack.namespace']
if (app_name in apps and
app_secs := s.attrs['Spec']['TaskTemplate']['ContainerSpec'].get('Secrets')):
(app_secs := s.attrs['Spec']['TaskTemplate']['ContainerSpec'].get('Secrets'))):
if not container_by_service.get(s.name):
logging.error(
f"Container {s.name} is not running, secrets can not be copied.")