Skip to content

Commit

Permalink
Merge pull request #33 from bikalbasnet/master
Browse files Browse the repository at this point in the history
Add missing entrypoint instruction in Dockerfile
  • Loading branch information
sergeyklay committed May 2, 2020
2 parents cc0c920 + e6f6ba9 commit db0282e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/ubuntu-16.04/php-7.2/Dockerfile
Expand Up @@ -262,6 +262,7 @@ VOLUME /app \
/var/lib/nginx/proxy

WORKDIR /app
ENTRYPOINT ["/entrypoint.sh"]

# Local Variables:
# tab-width: 4
Expand Down
2 changes: 1 addition & 1 deletion app/ubuntu-16.04/php-7.2/entrypoint.d/01-xdebug-setup.sh
Expand Up @@ -20,7 +20,7 @@ if [ "x${XDEBUG_REMOTE_ENABLE}" != "x" ]; then
# Setting XDEBUG_REMOTE_ENABLE=1 will enable xdebug
case $XDEBUG_REMOTE_ENABLE in
"1"|"on"|"On"|"ON"|"true"|"True"|"TRUE")
phpenmod -v 7.1 xdebug;
phpenmod -v 7.2 xdebug;
;;
esac
fi
Expand Down

0 comments on commit db0282e

Please sign in to comment.