溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Ubuntu16.04中使用Docker Compose

發(fā)布時間:2022-01-21 14:33:56 來源:億速云 閱讀:150 作者:iii 欄目:開發(fā)技術(shù)

本篇內(nèi)容主要講解“如何在Ubuntu16.04中使用Docker Compose”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“如何在Ubuntu16.04中使用Docker Compose”吧!

Docker Compose 是一種用于通過使用單個命令創(chuàng)建和啟動 Docker 應用程序的工具,可以運行多容器 Docker 應用的工具,可以使用Docker Compose配置應用程序的服務

Docker Compose 適用于許多不同的項目,如:

  • 開發(fā):利用 Compose 命令行工具,我們可以創(chuàng)建一個隔離(而可交互)的環(huán)境來承載正在開發(fā)中的應用程序。通過使用 Compose 文件,開發(fā)者可以記錄和配置所有應用程序的服務依賴關(guān)系。

  • 自動測試:此用例需求一個測試運行環(huán)境。Compose 提供了一種方便的方式來管理測試套件的隔離測試環(huán)境。完整的環(huán)境在 Compose 文件中定義。

安裝 Docker

我們需要安裝 Docker 來安裝 Docker Compose。首先為官方 Docker 倉庫添加公鑰。

 $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

接下來,添加 Docker 倉庫到 apt 源列表:

 $ sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"

更新包數(shù)據(jù)庫,并使用 apt 安裝 Docker

 $ sudo apt-get update$ sudo apt install docker-ce

在安裝進程結(jié)束后,Docker 守護程序應該已經(jīng)啟動并設(shè)為開機自動啟動。我們可以通過下面的命令來查看它的狀態(tài):

 $ sudo systemctl status docker---------------------------------● docker.service - Docker Application Container Engine Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled) Active: active (running)

安裝 Docker Compose

現(xiàn)在可以安裝 Docker Compose 了。通過執(zhí)行以下命令下載當前版本。

 # curl -L https://github.com/docker/compose/releases/download/1.14.0/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose

為二進制文件添加執(zhí)行權(quán)限:

 # chmod +x /usr/local/bin/docker-compose

檢查 Docker Compose 版本:

 $ docker-compose -v

輸出應該如下:

 docker-compose version 1.14.0, build c7bdf9e

測試 Docker Compose

Docker Hub 包含了一個用于演示的 Hello World 鏡像,可以用來說明使用 Docker Compose 來運行一個容器所需的配置。

創(chuàng)建并打開一個目錄:

 $ mkdir hello-world$ cd hello-world

創(chuàng)建一個新的 YAML 文件:

 $ $EDITOR docker-compose.yml

在文件中粘貼如下內(nèi)容:

 unixmen-compose-test: image: hello-world

*注意: 第一行是容器名稱的一部分。*

保存并退出。

運行容器

接下來,在 hello-world 目錄執(zhí)行以下命令:

 $ sudo docker-compose up

如果一切正常,Compose 輸出應該如下:

 Pulling unixmen-compose-test (hello-world:latest)...latest: Pulling from library/hello-worldb04784fba78d: Pull completeDigest: sha256:f3b3b28a45160805bb16542c9531888519430e9e6d6ffc09d72261b0d26ff74fStatus: Downloaded newer image for hello-world:latestCreating helloworld_unixmen-compose-test_1 ... Creating helloworld_unixmen-compose-test_1 ... doneAttaching to helloworld_unixmen-compose-test_1unixmen-compose-test_1 | unixmen-compose-test_1 | Hello from Docker!unixmen-compose-test_1 | This message shows that your installation appears to be working correctly.unixmen-compose-test_1 | unixmen-compose-test_1 | To generate this message, Docker took the following steps:unixmen-compose-test_1 | 1\. The Docker client contacted the Docker daemon.unixmen-compose-test_1 | 2\. The Docker daemon pulled the "hello-world" image from the Docker Hub.unixmen-compose-test_1 | 3\. The Docker daemon created a new container from that image which runs theunixmen-compose-test_1 | executable that produces the output you are currently reading.unixmen-compose-test_1 | 4\. The Docker daemon streamed that output to the Docker client, which sent itunixmen-compose-test_1 | to your terminal.unixmen-compose-test_1 | unixmen-compose-test_1 | To try something more ambitious, you can run an Ubuntu container with:unixmen-compose-test_1 | $ docker run -it ubuntu bashunixmen-compose-test_1 | unixmen-compose-test_1 | Share images, automate workflows, and more with a free Docker ID:unixmen-compose-test_1 | https://cloud.docker.com/unixmen-compose-test_1 | unixmen-compose-test_1 | For more examples and ideas, visit:unixmen-compose-test_1 | https://docs.docker.com/engine/userguide/unixmen-compose-test_1 | helloworld_unixmen-compose-test_1 exited with code 0

Docker 容器只能在命令(LCTT 譯注:此處應為容器中的命令)還處于活動狀態(tài)時運行,因此當測試完成運行時,容器將停止運行。

到此,相信大家對“如何在Ubuntu16.04中使用Docker Compose”有了更深的了解,不妨來實際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進入相關(guān)頻道進行查詢,關(guān)注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI