0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

UdemyのDocker講座まとめ

Posted at

僕が個人的に神と崇める、maximilianさんの講座の復習として、内容を要約します。
主に自分の復習用として、記載しています。

Images and Containers

  • Image
    • Blueprint for containers
      • its consist of our code and environment
      • multiple layers
      • read-only
    • types of Image
      • pre-built image ex) docker-hub
      • custom image
  • Containers
    • multiple containers are created by one Image
      • Read-write
  • Image Commands
    • docker tag
    • docker images / listing
    • docker iamge inspect / analyzing
    • docker rmi / removing
    • docker push/pull
    • docker build / making a new Image beased on dockerfile
  • Containers commands
    • docker ps / listing
    • dokcer rm / removing
    • docker create / making a new containers
    • docker run / making a new containers based on Image
    • docker start/stop
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?