This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Stop all containers | |
| docker stop `docker ps -qa` | |
| # Remove all containers | |
| docker rm `docker ps -qa` | |
| # Remove all images | |
| docker rmi -f `docker images -qa ` | |
| # Remove all volumes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| You can fix this using this step : | |
| go to the source fresh and build it : cd $GOPATH/github.com/pilu/fresh and go build in root of the project. | |
| now the fresh file will exist if no error happen, you can place this in your /usr/local/bin/ so that fresh command will exist. | |
| Yeah - I think that the /usr/bin directory is only writable by "system". I ended up putting it in /usr/local/bin instead. Thanks! | |