Commands used in standard docker workflow


docker build

Build Docker Image from Dockerfile

docker run

docker push

docker pull

  • Download a Docker Image from a central repo to local machine

Debugging Commands


docker logs <CONTAINER_ID>

Get the log output of the Docker Container

docker ps

Obtain the information of running Docker Container

Other useful commands


docker exec

docker rm -f <CONTAINER_ID>