Skip to content

Commit

Permalink
Merge pull request #107 from os2display/feature/docker-nginx-fixe
Browse files Browse the repository at this point in the history
ITKDev: Fixed nginx entry script
  • Loading branch information
cableman authored Jun 30, 2023
2 parents 1dbe6a4 + 6e84739 commit 289d344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions infrastructure/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ if [ "$1" = "nginx" -o "$1" = "nginx-debug" ]; then
case "$f" in
*.envsh)
if [ -x "$f" ]; then
echo >&3 "$0: Sourcing $f";
entrypoint_log "$0: Sourcing $f";
. "$f"
else
# warn on shell scripts without exec bit
echo >&3 "$0: Ignoring $f, not executable";
entrypoint_log "$0: Ignoring $f, not executable";
fi
;;
*.sh)
Expand All @@ -46,4 +46,4 @@ if [ "$1" = "nginx" -o "$1" = "nginx-debug" ]; then
fi
fi

exec "$@"
exec "$@"

0 comments on commit 289d344

Please sign in to comment.