Rainbond/hack/contrib/docker/worker/entrypoint.sh
2018-06-12 10:14:40 +08:00

8 lines
153 B
Bash
Executable File

#!/bin/bash
if [ "$1" = "bash" ];then
exec /bin/bash
elif [ "$1" = "version" ];then
echo ${RELEASE_DESC}
else
exec /run/rainbond-worker $@
fi