fix
All checks were successful
Deploy Dev / Build (pull_request) Successful in 6s
Deploy Dev / Push (pull_request) Successful in 10s
Deploy Dev / Deploy dev (pull_request) Successful in 10s

This commit is contained in:
Egor Matveev 2025-06-10 02:02:10 +03:00
parent 4baf1c94fa
commit f7b2b7b7ee

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)