From 5009347786194015fb81b27f11da75e8d77edb73 Mon Sep 17 00:00:00 2001 From: Gary Cartagena Date: Wed, 28 Sep 2022 13:16:20 -0500 Subject: [PATCH] Removing "-a" from the args array. It messes with automated container build in scripts. --- podman_compose.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/podman_compose.py b/podman_compose.py index 0d9cbc33..9b6126a5 100755 --- a/podman_compose.py +++ b/podman_compose.py @@ -2058,7 +2058,7 @@ def compose_up(compose, args): obj = compose if exit_code_from == cnt["_service"] else None thread = Thread( target=compose.podman.run, - args=[[], "start", ["-a", cnt["name"]]], + args=[[], "start", [cnt["name"]]], kwargs={"obj": obj, "log_formatter": log_formatter}, daemon=True, name=cnt["name"],