1
0
Fork 0
mirror of https://codeberg.org/Mo8it/AdvLabDB.git synced 2024-09-17 18:31:15 +00:00

Remove redundant prints

This commit is contained in:
Mo 2022-08-18 04:40:40 +02:00
parent 1625549a2d
commit 17c8cb6635

View file

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