NishadiSS / docker-for-beginners

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Docker commands

Check the installation

docker

Build the image

docker build -t <image-name> .

See docker images

docker images

Run the container

docker run -d -p <host-port>:<container-port> --name <container-name> <image-name>

List the containers

docker ps

Tag the image

docker tag <image-name> <docker-id>/<image-name>

Push the image

docker push <docker-id>/<image-name>

Pull the image

docker pull <docker-id>/<image-name>

Stop the container

docker stop <container-name>

Remove the container

docker rm <container-name>

Remove the image

docker rmi <image-name>

About


Languages

Language:Dockerfile 73.0%Language:Java 27.0%