Rainbond/hack/contrib/docker/chaos/entrypoint.sh
2020-09-06 11:09:48 +08:00

8 lines
159 B
Bash
Executable File

#!/bin/bash
if [ "$1" = "bash" ];then
exec /bin/bash
elif [ "$1" = "version" ];then
/run/rainbond-chaos version
else
exec /run/rainbond-chaos $@
fi