前言:
Docker 是一個開源的應(yīng)用容器引擎,讓開發(fā)者可以打包他們的應(yīng)用以及依賴包到一個可移植的鏡像中,然后發(fā)布到任何流行的Linux或Windows機器上。近幾年來,Docker 在國內(nèi)發(fā)展的如火如荼,特別是在互聯(lián)網(wǎng)公司, Docker 的使用是十分普遍的,極大提高了應(yīng)用的維護效率,降低了云計算應(yīng)用開發(fā)的成本。本篇文章主要是帶你入門Docker,介紹Docker的安裝及簡單使用。
1.安裝Docker
想要學習Docker,我們首先要安裝Docker,從 17.03 版本之后分為 CE(Community Edition: 社區(qū)版) 和 EE(Enterprise Edition: 企業(yè)版),下面我們以CentOS系統(tǒng)為例,介紹Docker社區(qū)版的安裝:
卸載舊版本
舊版本的 Docker 稱為 docker 或者 docker-engine ,使用以下命令卸載舊版本:
$ sudo yum remove docker \
docker-client \
docker-client-latest \
docker-common \
docker-latest \
docker-latest-logrotate \
docker-logrotate \
docker-engine
安裝依賴包
#配置yum源
sudo yum-config-manager \
--add-repo \
https://mirrors.ustc.edu.cn/docker-ce/linux/centos/docker-ce.repo
#安裝依賴包
sudo yum install -y yum-utils \
device-mapper-persistent-data \
lvm2
安裝最新版本的 Docker CE
sudo yum-config-manager --enable docker-ce-edge
sudo yum makecache fast
sudo yum install docker-ce
啟動 Docker CE
sudo systemctl enable docker
sudo systemctl start docker
建立 docker 用戶組
sudo groupadd docker
sudo usermod -aG docker $USER
運行hello-world測試
$ docker run hello-world
Unable to find image 'hello-world:latest' locally
latest: Pulling from library/hello-world
ca4f61b1923c: Pull complete
Digest: sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c
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 client contacted the Docker daemon.
2. The Docker daemon pulled the "hello-world" image from the Docker Hub.
(amd64)
3. The Docker daemon created a new container from that image which runs the
executable that produces the output you are currently reading.
4. The Docker daemon streamed that output to the Docker client, which sent it
to your terminal.
To try something more ambitious, you can run an Ubuntu container with:
$ docker run -it ubuntu bash
Share images, automate workflows, and more with a free Docker ID:
https://hub.docker.com/
For more examples and ideas, visit:
https://docs.docker.com/get-started/
到此我們成功安裝了Docker,同樣的,在Windows系統(tǒng)及macOS系統(tǒng)中安裝Docker也是十分容易,下載Docker Desktop安裝包即可安裝使用,具體可參考下面官方文檔:
https://docs.docker.com/docker-for-windows/install/
https://docs.docker.com/docker-for-mac/install/
2.常用命令介紹
學習Docker,我們首先要知道它的整體架構(gòu),這里簡單介紹下Docker中三個基本概念:
- 鏡像(Image):Docker 鏡像(Image),就相當于是一個 root 文件系統(tǒng)。比如官方鏡像 ubuntu:16.04 就包含了完整的一套 Ubuntu16.04 最小系統(tǒng)的 root 文件系統(tǒng)。
- 容器(Container):鏡像(Image)和容器(Container)的關(guān)系,就像是面向?qū)ο蟪绦蛟O(shè)計中的類和實例一樣,鏡像是靜態(tài)的定義,容器是鏡像運行時的實體。容器可以被創(chuàng)建、啟動、停止、刪除、暫停等。
- 倉庫(Repository):倉庫可看著一個代碼控制中心,用來保存鏡像。
鏡像相關(guān)命令:
1)鏡像的查找
docker search 鏡像名(例如redis)
2)鏡像的下載
docker pull 鏡像名
3)查看本地的鏡像列表
docker images
4)刪除鏡像
docker rmi 鏡像ID
容器相關(guān)命令:
1)運行鏡像為容器
docker run --name 容器的名字 -d 鏡像的名字
-d 表示的是detached,意味著執(zhí)行完這句命令后控制臺將不會被阻礙,可以繼續(xù)輸入命令操作。
2)獲取正在運行的容器列表
docker ps
3) 獲取所有容器列表 包含意見退出的
docker ps -a
4)停止和啟動容器
docker start/stop 容器名字/id
5)端口映射
需要將容器中運行的軟件的端口映射到主機的端口,否則局域網(wǎng)內(nèi)的主機是不能夠訪問的。
docker run -d -p 6378:6379 --name myRedis redis
-p:容器中的6379端口映射到主機的6378端口
6)刪除容器
docker rm id
7)查看當前容器日志
docker logs name/id
8)登錄容器
docker exec -it 容器名字 bash
-i:保證我們的輸入有效
-t:會分配一個偽終端
登錄訪問當前容器,登陸后就可以在容器中進行常規(guī)的Linux命令操作,還可以使用exit命令退出登錄。
總結(jié):
本篇文章簡單介紹了Docker的安裝及常用命令,作為入門文章,希望對你有所幫助。其實Docker作為基礎(chǔ)工具,還是推薦大家學習一下,比如你可以秒級啟動一個MySQL實例,有新版本也可以用Docker運行來測試。下篇文章打算寫下如何在Docker中運行及配置MySQL,期待下吧!
以上就是Docker簡單入門使用教程的詳細內(nèi)容,更多關(guān)于Docker入門與使用的資料請關(guān)注腳本之家其它相關(guān)文章!