Last active
May 28, 2020 09:09
-
-
Save nuclearglow/a899ec1817e5058524d63ce99c53f918 to your computer and use it in GitHub Desktop.
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 build -t image-name . | |
docker run -it image-name /bin/bash | |
# stop all | |
docker stop $(docker ps -a -q) | |
# remove all | |
docker rm $(docker ps -a -q) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment