milvus/docker/deploy/ubuntu18.04/docker-entrypoint.sh
test a16a0544f3 update docker images version to ubuntu18.04
Former-commit-id: 37b330c19f95bc0a6e85b46fcc3dd785c1814c66
2019-10-17 15:02:52 +08:00

11 lines
113 B
Bash
Executable File

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