Pull the docker image:

docker pull hello-world

 

Show all the images:

docker images

 

Remove the image:

docker rmi <image_id>

 

Run the image:

docker run hello-world

docker run -p 80:80 kitematic/hello-world-nginx //Run kitematic/hello-world-nginx image on (-p) port (local)80:80(to nginx 80)

Once run the images, you can see the webpage the your docker site url.

 

List all the running containers:

docker ps

 

List all the containers:

docker ps -a

 

Remove the container:

docker rm <container_id>

After delete container, the images will still be left, if you want to delete the image
just do `docker rmi <iamge_id>`

 

Stop the container:

docker stop <container_id>

 

[Docker] Docker Client in Action[Docker] Docker Client in Action

相关文章:

  • 2021-12-23
  • 2021-04-16
  • 2021-12-05
  • 2021-11-28
  • 2022-12-23
  • 2021-11-08
  • 2021-07-26
猜你喜欢
  • 2022-01-17
  • 2021-11-20
  • 2021-10-04
  • 2021-12-09
  • 2021-12-18
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案