diff options
author | Leo Wang <grakiss.wanglei@huawei.com> | 2017-05-02 16:50:02 -0700 |
---|---|---|
committer | Leo Wang <grakiss.wanglei@huawei.com> | 2017-05-03 09:20:13 -0700 |
commit | 03ade964103d88af4d9a4f729d3bb00c12bff489 (patch) | |
tree | b2397cd9c12bedbc9d45085046bf54b846aba56b /utils/restart_db.sh | |
parent | 3aeab49bb64c6c89da37f3d03f781aec85f39015 (diff) |
local db support offline mode
JIRA: DOVETAIL-415
The local db also need to support offline, move all the git clone/apt/yum/pip/wget/curl into the Dockerfile
Change-Id: I2392dc9f4a6bd6f6a5a3f4849625a576c51a44f8
Signed-off-by: Leo Wang <grakiss.wanglei@huawei.com>
Diffstat (limited to 'utils/restart_db.sh')
-rwxr-xr-x | utils/restart_db.sh | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/utils/restart_db.sh b/utils/restart_db.sh deleted file mode 100755 index 39b60e05..00000000 --- a/utils/restart_db.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -############################################################################## -# Copyright (c) 2016 HUAWEI TECHNOLOGIES CO.,LTD and others. -# -# All rights reserved. This program and the accompanying materials -# are made available under the terms of the Apache License, Version 2.0 -# which accompanies this distribution, and is available at -# http://www.apache.org/licenses/LICENSE-2.0 -############################################################################## - - -if [ "$#" -ne 1 ]; then - echo "Error: missing parameter! try again like this:" - echo "" - echo "./restart_db.sh 192.168.115.2" - echo "" - echo "parameters:" - echo " db_host_ip: your localhost ip address" - echo "" - exit 1 -fi - -export mongodb_port=${mongodb_port:-"27017"} -export testapi_port=${testapi_port:-"8000"} -export db_host_ip=${db_host_ip:-"$1"} - -sudo docker rm -f testapi -sudo docker run -itd -p $testapi_port:8000 --name testapi \ - -e mongodb_url=mongodb://$db_host_ip:$mongodb_port/ kkltcjk/testapi:reporting |