forked from larrychristensen/orcpub
-
-
Notifications
You must be signed in to change notification settings - Fork 106
Docker Cheat sheet
John Liss edited this page Jan 21, 2019
·
1 revision
Stop the docker containers after starting with docker-compose up
CNTRL+C
Run orcpub in the background:
docker-compose up -d
To Stop all running containers
docker stop $(docker ps -aq)
To Remove all containers
docker rm $(docker ps -aq)
To Remove all images
docker rmi $(docker images -q)
To cleanup (deletes everything in the docker storage)
docker system prune -af
If you want to pull the source from github (again and rebuild):
cd c:\orcpub\orcpub\
git pull origin develop
docker-compose up --build