We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e1524e commit f968562Copy full SHA for f968562
README.md
@@ -130,6 +130,11 @@ I hope no one more suffer from many developing methods such a **Unit testing wit
130
```bash
131
docker-compose run --no-deps web bundle
132
```
133
+ * How to remove <none> images after building
134
+ https://forums.docker.com/t/how-to-remove-none-images-after-building/7050
135
+ ```bash
136
+ docker rmi $(docker images -f “dangling=true” -q)
137
+ ```
138
* Database Reset
139
140
docker-compose run web bundle exec rake db:reset --trace
0 commit comments