diff options
author | Mickaël Rémond <mremond@process-one.net> | 2019-07-18 17:05:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-18 17:05:50 +0200 |
commit | a351dfe0f85acd83eade9fe856e0730d5acf48f3 (patch) | |
tree | a878ec1de9220beb324173856603c5a2debfff3e /test/docker/README.md | |
parent | Report failures of changing net_ticktime (diff) |
Fix example on test data set deletion
Diffstat (limited to 'test/docker/README.md')
-rw-r--r-- | test/docker/README.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/docker/README.md b/test/docker/README.md index a3bd4ecc7..5caccdcd9 100644 --- a/test/docker/README.md +++ b/test/docker/README.md @@ -23,6 +23,7 @@ You can fully clean up the environment with: If you want to clean the data, you can remove the data directories after the `docker-compose down` command: ``` -mkdir test/docker/db/mysql/data -mkdir test/docker/db/postgres/data -mkdir test/docker/db/riak/data +rm -rf test/docker/db/mysql/data +rm -rf test/docker/db/postgres/data +rm -rf test/docker/db/riak/data +``` |