mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-30 07:25:37 +08:00
10 lines
116 B
Bash
Executable File
10 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ "$1" == 'start' ]; then
|
|
cd /var/lib/milvus/scripts && ./start_server.sh
|
|
fi
|
|
|
|
exec "$@"
|