Docker Cheat sheet - Orcpub/orcpub GitHub Wiki

Useful Docker commands:

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