Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSytse Sijbrandij <sytse@gitlab.com>2015-05-06 16:32:29 +0300
committerSytse Sijbrandij <sytse@gitlab.com>2015-05-06 16:32:29 +0300
commite8edd20bfd4f27a3dc644a86b667e1d2900b729e (patch)
tree9f59b87d6572785f34913ffee23994f4645d5ca6 /docker/troubleshooting.md
parent7af59c54fc1fcf9d19927e76be49318689684f8b (diff)
Made a single docker file.
Diffstat (limited to 'docker/troubleshooting.md')
-rw-r--r--docker/troubleshooting.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/docker/troubleshooting.md b/docker/troubleshooting.md
index b1b70de5997..1b137922bf8 100644
--- a/docker/troubleshooting.md
+++ b/docker/troubleshooting.md
@@ -61,3 +61,11 @@ head /proc/sys/kernel/shmmax /proc/sys/kernel/shmall
free -m
```
+
+Remove ALL docker containers and images (also non GitLab ones):
+
+```
+docker rm $(docker ps -a -q)
+docker rmi $(docker images -q)
+```
+