Skip to content

Commit

Permalink
DP-398 ADMIN_PHONE missing in Docker Entrypoint file
Browse files Browse the repository at this point in the history
- Fix APP_KEY in docker-entrypoint
  • Loading branch information
yaroslavmo committed Sep 13, 2021
1 parent aa67879 commit baadef4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ fi
# do we have an existing APP_KEY we should reuse ?
if [ -n "$APP_KEY" ]; then
echo "Setting APP_KEY=$APP_KEY from environment"
sed -i "s/APP_KEY=.*/APP_KEY=$APP_KEY/" .env
sed -i "s#APP_KEY=.*#APP_KEY=$APP_KEY#" .env
else
# generate AppKey on first run
if [ ! -e .first_run_done ]; then
Expand Down

0 comments on commit baadef4

Please sign in to comment.