From 2178e56df9804efbfd43149f866db0e65cb9e07f Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Sat, 3 Dec 2022 19:54:15 +0100 Subject: [PATCH] workaround for container startup --- docker/docker-init.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docker/docker-init.sh b/docker/docker-init.sh index 7110ef4..7c51f8e 100644 --- a/docker/docker-init.sh +++ b/docker/docker-init.sh @@ -1,6 +1,9 @@ #!/bin/bash cd /stacosys -python3 stacosys/run.py /config/config.ini +# workaround for startup +cp -f stacosys/run.py . +python3 run.py /config/config.ini -tail -f /dev/null \ No newline at end of file +# catch for debug +#tail -f /dev/null \ No newline at end of file