From 17c8cb6635ecacf4243f5e6dbd05b3fb39085083 Mon Sep 17 00:00:00 2001 From: Mo8it Date: Thu, 18 Aug 2022 04:40:40 +0200 Subject: [PATCH] Remove redundant prints --- podman/deploy.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/podman/deploy.py b/podman/deploy.py index 08f8c32..d23283f 100755 --- a/podman/deploy.py +++ b/podman/deploy.py @@ -156,7 +156,6 @@ def create_traefik_container(): print(f"Making sure that the certificates directory {TRAEFIK_CERTS_DIR} exists.") TRAEFIK_CERTS_DIR.mkdir(parents=True, exist_ok=True) - print("Creating container traefik.") create_container( "traefik", f"""--network {args.network} \ @@ -171,7 +170,6 @@ def create_traefik_container(): def create_nginx_container(): - print("Creating container nginx.") create_container( "nginx", f"""--network {args.network} \ @@ -260,7 +258,6 @@ def main(): for command in commands: run(command, check=True) - print("Creating container advlabdb.") create_container( "advlabdb", f"{container_args} localhost/advlabdb:latest",