fix #44

Merged
emmatveev merged 1 commits from master into dev 2025-06-10 02:02:32 +03:00

View File

@ -89,7 +89,10 @@ while True:
print(container_id_run.code, container_id_run.out, container_id_run.err)
restart = call(f"docker exec {container_id_run.out} ./refre.sh")
command = f"docker exec {container_id_run.out} ./refre.sh"
print(command)
restart = call(command)
print(restart.code, restart.out, restart.err)
time.sleep(30)