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",