EN
中
簡
日
Docker 是開源專案,出現在 2013年。
Docker 會出現是為了解決,傳統虛擬機器 (Virtual Machines) 因為需要額外安裝作業系統,而導致啟動慢,耗費記憶體大的問題。
快速,能更有效的使用資源
統一環境
docker run hello-world
docker ps -a
docker images
docker stop [container_id]
docker rm [container_id]
docker rmi [image_id]
When you subscribe to the blog, we will send you an e-mail when there are new updates on the site so you wouldn't miss them.
Captcha 圖像
Docker
基本介紹
什麼是 Docker
Docker 是開源專案,出現在 2013年。
Docker 會出現是為了解決,傳統虛擬機器 (Virtual Machines) 因為需要額外安裝作業系統,而導致啟動慢,耗費記憶體大的問題。
為什麼使用 Docker
快速,能更有效的使用資源
統一環境
使用介紹
Docker 三元素
Image 印象檔
Container 容器
Repository 倉庫
安裝
第一次使用
docker run hello-worlddocker ps -adocker imagesdocker stop [container_id]docker rm [container_id]docker rmi [image_id]