Skip to content

Commit

Permalink
avoid a warning killing a non-existant container
Browse files Browse the repository at this point in the history
  • Loading branch information
greggles committed Feb 18, 2014
1 parent 548be4a commit 1d5c597
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 1d5c597

Please sign in to comment.