Merge pull request #2054 from jezdez/docker-entrypoint-wildcard

Allow running any command inside the container via the docker entrypoint script.
This commit is contained in:
Arik Fraimovich 2017-10-25 22:39:55 +03:00 committed by GitHub
commit 340a23e71c

View File

@ -72,7 +72,10 @@ case "$1" in
tests)
tests
;;
*)
help)
help
;;
*)
exec "$@"
;;
esac