2018-10-14 18:00:06 +05:30
|
|
|
#!/usr/bin/env bash
|
2018-10-03 13:44:30 -04:00
|
|
|
|
|
|
|
# default to run whatever the user wanted like "/bin/bash"
|
|
|
|
## If user runs no need to run any more of the entrypoint script.
|
|
|
|
if [[ -z "$@" ]]; then
|
|
|
|
echo "User did not attempt input. Now executing docker-entrypoint."
|
|
|
|
else
|
|
|
|
echo "Running $@."
|
|
|
|
exec "$@"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
/bin/bash
|