milvus/docker/deploy/gpu/ubuntu18.04/docker-entrypoint.sh
2019-11-15 15:36:15 +08:00

10 lines
112 B
Bash
Executable File

#!/bin/bash
set -e
if [ "$1" == 'start' ]; then
cd /opt/milvus/scripts && ./start_server.sh
fi
exec "$@"