From 128d9ac2073e32a30c15a53fd101907f2c8c96f5 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Thu, 18 Aug 2022 03:55:05 +0200 Subject: [PATCH] network exists workaround --- podman/deploy.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/podman/deploy.py b/podman/deploy.py index 033a45e..ee22f96 100755 --- a/podman/deploy.py +++ b/podman/deploy.py @@ -143,7 +143,8 @@ def check_requirements(): print(f"Creating network {args.network}.") run( f"podman network create {args.network}", - check=True, + # Commented out because old buildah versions do not support "network exists" + # check=True, )