Merge pull request #150 from seerjk/patch-1

Add tips: Delete all containers command
This commit is contained in:
Will Sargent 2017-12-24 12:36:13 -08:00 committed by GitHub
commit 4b3780e322
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -655,6 +655,12 @@ docker run --rm ubuntu env
docker kill $(docker ps -q)
```
### Delete all containers (force!! running or stopped containers)
```
docker rm -f $(docker ps -qa)
```
### Delete old containers
```