@TOChtml
Docker 是一個開源的應用容器引擎,基於 Go 語言 並聽從 Apache2.0 協議開源。docker
Docker 可讓開發者打包他們的應用以及依賴包到一個輕量級、可移植的容器中,而後發佈到任何流行的 Linux 機器上,也能夠實現虛擬化。容器是徹底使用沙箱機制,相互之間不會有任何接口(相似 iPhone 的 app),更重要的是容器性能開銷極低。shell
Docker 從 17.03 版本以後分爲 CE(Community Edition: 社區版) 和 EE(Enterprise Edition: 企業版),咱們用社區版就能夠了。ubuntu
win七、win8 等須要利用 docker toolbox 來安裝,國內可使用阿里雲的鏡像來下載,下載地址:http://mirrors.aliyun.com/docker-toolbox/windows/docker-toolbox/windows
安裝比較簡單,雙擊運行,點下一步便可,能夠勾選本身須要的組件:
docker toolbox 是一個工具集,它主要包含如下一些內容:bash
下載完成以後直接點擊安裝,安裝成功後,桌邊會出現三個圖標,入下圖所示:
點擊 Docker QuickStart 圖標來啓動 Docker Toolbox 終端。app
若是系統顯示 User Account Control 窗口來運行 VirtualBox 修改你的電腦,選擇 Yes。
$ 符號那你能夠輸入如下命令來執行。ide
$ docker run hello-world Unable to find image 'hello-world:latest' locally Pulling repository hello-world 91c95931e552: Download complete a8219747be10: Download complete Status: Downloaded newer image for hello-world:latest Hello from Docker. This message shows that your installation appears to be working correctly. To generate this message, Docker took the following steps: 1. The Docker Engine CLI client contacted the Docker Engine daemon. 2. The Docker Engine daemon pulled the "hello-world" image from the Docker Hub. (Assuming it was not already locally available.) 3. The Docker Engine daemon created a new container from that image which runs the executable that produces the output you are currently reading. 4. The Docker Engine daemon streamed that output to the Docker Engine CLI client, which sent it to your terminal. To try something more ambitious, you can run an Ubuntu container with: $ docker run -it ubuntu bash For more examples and ideas, visit: https://docs.docker.com/userguide/
Win10 系統
如今 Docker 有專門的 Win10 專業版系統的安裝包,須要開啓 Hyper-V。工具
開啓 Hyper-V
程序和功能
啓用或關閉Windows功能
選中Hyper-V
一、安裝 Toolbox
最新版 Toolbox 下載地址: 訪問 https://www.docker.com/get-started,註冊一個帳號,而後登陸。性能
點擊 Get started with Docker Desktop,並下載 Windows 的版本,若是你尚未登陸,會要求註冊登陸:
二、運行安裝文件
雙擊下載的 Docker for Windows Installer 安裝文件,一路 Next,點擊 Finish 完成安裝
安裝完成後,Docker 會自動啓動。通知欄上會出現個小鯨魚的圖標,這表示 Docker 正在運行。
桌邊也會出現三個圖標,入下圖所示:
咱們能夠在命令行執行 docker version 來查看版本號,docker run hello-world 來載入測試鏡像測試。
若是沒啓動,你能夠在 Windows 搜索 Docker 來啓動:
啓動後,也能夠在通知欄上看到小鯨魚圖標:
鏡像加速
Windows 10
對於使用 Windows 10 的系統,在系統右下角托盤 Docker 圖標內右鍵菜單選擇 Settings,打開配置窗口後左側導航菜單選擇 Daemon。在 Registrymirrors 一欄中填寫加速器地址 https://registry.docker-cn.com ,以後點擊 Apply 保存後 Docker 就會重啓並應用配置的鏡像地址了。
參考文獻:https://www.runoob.com/docker/windows-docker-install.html