我注意到docker的许多entrypoint.sh脚本都是这样的:
#!/bin/bash set -e ... code ... exec "$@"
什么是set -e和exec "$@"为什么?
set -e
exec "$@"
shell docker
docker ×1
shell ×1