Created
October 16, 2016 17:32
-
-
Save smaglio81/1f949c314572332e16d525764ff23b35 to your computer and use it in GitHub Desktop.
powershell commands to recreate tyk docker environment
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 stop $(docker ps -a -q) # stops all running containers in docker | |
docker rm $(docker ps -a -q) # removes all containers in docker (I wanted to start clean each time) | |
docker-compose up -d # recreates the environment (this is usually where errors happen) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment