#!/bin/bash source /opt/core_run.env case "$1" in maphostid) shift 1 /bin/bash -l -c '$BIN_DIR/map-host-id $@' $0 "$@" ;; idle) sleep infinity ;; image) shift 1 /bin/bash -l -c '$BIN_DIR/image-info $@' $0 "$@" ;; shell) shift 1 _shell_=/bin/bash [[ $1 ]] && _shell_="/bin/su $1" $_shell_ -c "cd ${DEFAULT_DIR:-/}; exec bash -l" ;; help) $BIN_DIR/entrypoint-help ;; script) shift 1 cat | /bin/bash -l ;; ${ENTRYPOINT_CMD:-start}) shift 1 /bin/bash -l -c '${ENTRYPOINT_CMD_PATH:-$BIN_DIR/start} $@' $0 "$@" ;; *) echo "--- command passed to container: $* ---" echo -e "output:\n" if [ -n "$*" ]; then if ! /bin/bash -l -c '$@' $0 "$@" ; then $BIN_DIR/entrypoint-help fi echo -e "\n------------------------------\n" else echo "!!!! no command was passed to entrypoint !!!! " echo $BIN_DIR/entrypoint-help fi ;; esac