From 75df9398c36be4d552207209ae817aa9dcab66fd Mon Sep 17 00:00:00 2001 From: softcat477 Date: Thu, 2 Nov 2023 12:48:10 -0400 Subject: [PATCH] Fix #1093, Fix iipsrv start script --- iipsrv/Dockerfile | 2 +- nginx/scripts/start | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/iipsrv/Dockerfile b/iipsrv/Dockerfile index 313c3875e..9948ddf8f 100644 --- a/iipsrv/Dockerfile +++ b/iipsrv/Dockerfile @@ -34,4 +34,4 @@ ENV PORT 9003 EXPOSE ${PORT} -ENTRYPOINT ["/fcgi-bin/iipsrv.fcgi", "--bind", "0.0.0.0:${PORT}"] +ENTRYPOINT ./src/iipsrv.fcgi --bind 0.0.0.0:${PORT} diff --git a/nginx/scripts/start b/nginx/scripts/start index 5fcac51e5..f5d637239 100644 --- a/nginx/scripts/start +++ b/nginx/scripts/start @@ -7,7 +7,7 @@ set -o xtrace # Print commands and their arguments as they are executed. #sed -i "s/SERVER_HOST/${SERVER_HOST}/g" /etc/nginx/conf.d/ssl.conf # Wait for everything to be up. -# /run/wait-for-app iipsrv:9003 +/run/wait-for-app iipsrv:9003 /run/wait-for-app redis:6379 /run/wait-for-app rodan-main:8000 --timeout=900 /run/wait-for-app rodan-client:80