diff options
-rwxr-xr-x | mgr/docker/instance_init.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mgr/docker/instance_init.sh b/mgr/docker/instance_init.sh index 90468f8..2764a07 100755 --- a/mgr/docker/instance_init.sh +++ b/mgr/docker/instance_init.sh @@ -11,7 +11,10 @@ function start_mysql { function create_database { cd /service/bin - bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1 + if [ ! -f dbexist.txt ]; then + echo 1 > dbexist.txt + bash initDB.sh root $MYSQL_ROOT_PASSWORD 3306 127.0.0.1 + fi cd /service } |