master #48

Merged
emmatveev merged 11 commits from master into prod 2025-06-12 01:58:34 +03:00
Showing only changes of commit f7b2b7b7ee - Show all commits

View File

@ -89,7 +89,10 @@ while True:
print(container_id_run.code, container_id_run.out, container_id_run.err) 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) print(restart.code, restart.out, restart.err)
time.sleep(30) time.sleep(30)