Created
November 28, 2017 10:27
-
-
Save TheMoroccan09/60bde731493f7c178efc4d07d3b6cced 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
#!bin/bash | |
DOCKER_PIDS=$(docker ps -a -q) | |
if [ -n "$DOCKER_PIDS" ]; then | |
docker stop $DOCKER_PIDS && docker rm $DOCKER_PIDS | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment