diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-30 16:26:15 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-04-17 23:05:59 +0900 |
commit | 3b25c7c8508384b1dc6c55bfc6c59947efa04888 (patch) | |
tree | 0a761d2c342df2063ecc1aedb975640dda474a36 /test | |
parent | 3881b9b3fec0f242f2d3a4d7f20b8d1937b8ad00 (diff) |
scenario_test/README: Update commands to clean up
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/scenario_test/README.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/scenario_test/README.md b/test/scenario_test/README.md index 82687b07..df76a2e5 100644 --- a/test/scenario_test/README.md +++ b/test/scenario_test/README.md @@ -107,9 +107,11 @@ OK ``` ## <a name="section4"> Clean up -A lot of containers are created during the test. +A lot of containers, networks temporary files are created during the test. Let's clean up. ```shell $ sudo docker rm -f $(sudo docker ps -a -q) +$ sudo docker network prune -f +$ sudo rm -rf /tmp/gobgp ``` |