From f7b2b7b7ee5776b5e7ce0db6055eb248b1a3ed39 Mon Sep 17 00:00:00 2001 From: Egor Matveev Date: Tue, 10 Jun 2025 02:02:10 +0300 Subject: [PATCH] fix --- main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 90a4aee..e3303bf 100644 --- a/main.py +++ b/main.py @@ -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)