Skip to content

Commit

Permalink
properly run docker entrypoint script
Browse files Browse the repository at this point in the history
It needed an argument
  • Loading branch information
bkiahstroud committed Aug 20, 2024
1 parent adacea0 commit 86ed99e
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions nginx/scripts/start-nginx
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/env bash
set -e

# Ensure the Docker scripts gets executed. This includes calling `envsubst`
# on the nginx conf template
bash /docker-entrypoint.sh

install-self-signed-cert
echo "Starting Nginx..."
nginx -g 'daemon off;'

# Ensure the Docker entrypoint scripts get executed. This includes
# calling `envsubst` on the nginx conf template
bash /docker-entrypoint.sh nginx -g 'daemon off;'

0 comments on commit 86ed99e

Please sign in to comment.