Posts

Showing posts with the label docker cli

Cheat Sheet: Docker, OpenShift, Kubernetes - CLI

  Cheat Sheet: Docker CLI Docker CLI  Command Description curl localhost Pings the application. docker build Builds a Docker image from a specified Dockerfile. docker build . -t Builds the image and tags the image id. docker CLI Starts the Docker Command Line Interface (CLI). docker container rm Removes a container. docker images Displays a list of all available Docker images. docker ps Lists the containers. docker ps -a Lists the containers that ran and exited successfully. docker pull Pulls the latest image or repository from a registry. docker push Pushes an image or a repository to a registry. docker run Runs a command in a new container. docker run -p Runs the container by publishing the ports. docker stop Stops one or more running containers. docker stop $(docker ps -q) Stops all currently running containers. docker tag Creates a tag for a target image that refers to a source image. docker –version Displays the version of the Docker CLI. exit Closes the terminal session...