Created
July 27, 2016 18:25
-
-
Save juice500ml/b99e86655744fe14e4dd7b29044e96ff to your computer and use it in GitHub Desktop.
docker cheatsheet
This file contains 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
docker-compose up / down | |
docker images | |
docker rm {{ ps -al }} | |
docker rmi {{ image id }} | |
docker ps -a | |
ex) | |
docker-compose run web bash | |
running "web" in new bash | |
= its inside docker-compose.yml! | |
bash can be seen at docker ps -a | |
so docker rm {{ bash container id }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment