Skip to content

Commit

Permalink
Fix #1093, Fix iipsrv start script
Browse files Browse the repository at this point in the history
  • Loading branch information
softcat477 committed Nov 2, 2023
1 parent 0134a9e commit 75df939
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iipsrv/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
2 changes: 1 addition & 1 deletion nginx/scripts/start
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 75df939

Please sign in to comment.