Merge pull request 'fix' (#44) from master into dev

Reviewed-on: #44
This commit is contained in:
emmatveev 2025-06-10 02:02:30 +03:00
commit 5dd11e1fc8

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)