diff options
author | Bin Yang <bin.yang@windriver.com> | 2017-09-08 15:50:05 +0800 |
---|---|---|
committer | Bin Yang <bin.yang@windriver.com> | 2017-09-08 15:50:05 +0800 |
commit | 9be6dfbd7c81d017865a5eccacdcedb184ef6e50 (patch) | |
tree | d4f99dd0013150fbaf40fbd91d882da7ecabdef1 /newton/stop.sh | |
parent | 08fd690840bea327695aca0e816345c5ce7e3cbf (diff) |
Add docker build file
add docker build file to generate container image
Change-Id: I08e289dea8caf01b9690d80c2c21355d0f121a6b
Issue-Id: MULTICLOUD-58
Signed-off-by: Bin Yang <bin.yang@windriver.com>
Diffstat (limited to 'newton/stop.sh')
-rwxr-xr-x | newton/stop.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newton/stop.sh b/newton/stop.sh index db6d7366..1abfe404 100755 --- a/newton/stop.sh +++ b/newton/stop.sh @@ -10,4 +10,5 @@ # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -ps auxww | grep 'manage.py runserver 127.0.0.1:9003' | awk '{print $2}' | xargs kill -9 +ps auxww | grep 'manage.py runserver 0.0.0.0:9003' | awk '{print $2}' | xargs kill -9 +ps auxww | grep 'memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid' | awk '{print $2}' | xargs kill -9 |