Skip to content

Commit

Permalink
Merge pull request #3 from greggles/master
Browse files Browse the repository at this point in the history
avoid a warning killing a non-existant container
  • Loading branch information
ricardoamaro committed Feb 18, 2014
2 parents 8a3adde + 1d5c597 commit 0c16082
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ ricardoamaro/drupal-lamp
### Clean up
While i am developing i use this to rm all old instances
```
sudo docker ps -a | awk '{print $1}' | xargs -n1 -I {} docker rm {}
sudo docker ps -a | awk '{print $1}' | grep -v CONTAINER | xargs -n1 -I {} docker rm {}
```

### Known Issues
Expand Down

0 comments on commit 0c16082

Please sign in to comment.