summaryrefslogtreecommitdiffstats
path: root/docker
diff options
context:
space:
mode:
authorKristian Aune <kkraune@users.noreply.github.com>2017-02-08 11:49:07 +0100
committerGitHub <noreply@github.com>2017-02-08 11:49:07 +0100
commit53079802a773a34126de0621975214053c2e5306 (patch)
treef03af944e18f22526ca2619e3e293fd236d9e974 /docker
parent1d2fda3acf3035d628aa71bcb82bbcb88f09d5ad (diff)
add disk full to troubleshooting
Diffstat (limited to 'docker')
-rw-r--r--docker/README.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docker/README.md b/docker/README.md
index c174d36fbc9..3f42442c6ef 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -12,8 +12,9 @@ Execute ```./build-vespa.sh <Vespa version number>``` to build Vespa from this s
The produced rpms will be available in this folder after compiliation.
### Troubleshooting
-If the build fails, start from scratch: ```docker rmi -f vesparun vespabuild``` - then build again
-
+If the build fails, start from scratch: ```docker rmi -f vesparun vespabuild``` - then build again. Clean local docker if docker image disk full:
+- ```docker rm -v $(docker ps -a -q -f status=exited)```
+- ```docker rmi $(docker images -f "dangling=true" -q)```
## Running Vespa
Execute ```./run-vespa.sh <Vespa version number>``` to start Vespa.