CentOS下Docker與.netcore(三)之 三劍客之一Docker-Compose

来源:https://www.cnblogs.com/chenyishi/archive/2018/11/22/10000693.html
-Advertisement-
Play Games

1.什麼是Docker-Compose 上一章我們講了通過Dockerfile創建鏡像,這在一個小項目中是沒問題的,但如果在一個包含多個項目的情況下,我們每次部署都需要執行多次創建鏡像與運行容器的命令,這樣就比較麻煩,為瞭解決這種情況,Docker-Compose出現了。Docker-Compose ...


1.什麼是Docker-Compose

上一章我們講了通過Dockerfile創建鏡像,這在一個小項目中是沒問題的,但如果在一個包含多個項目的情況下,我們每次部署都需要執行多次創建鏡像與運行容器的命令,這樣就比較麻煩,為瞭解決這種情況,Docker-Compose出現了。Docker-Compose主要就是為瞭解決在一臺伺服器創建鏡像與運行容器複雜的問題,有了Docker-Compose我們就可以通過一條命令,生成多鏡像與運行容器。

2.Docker-Compose安裝

sudo curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose

查看安裝是否成功

3.創建兩個.netcore項目,不啟用https

ServerProvider項目

新增Dockerfile

FROM microsoft/dotnet:2.1-aspnetcore-runtime
MAINTAINER yishi.chen

LABEL description="this is a serverprovider website"
LABEL version="1.0"

ARG serverport

WORKDIR /app
COPY bin/Release/netcoreapp2.1/publish/ .
EXPOSE $serverport
ENTRYPOINT ["dotnet","ServerProvider.dll"]

Program.cs改動

        public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseUrls($"http://*:{Environment.GetEnvironmentVariable("serverport")}")
                .UseStartup<Startup>();

ValuesController.cs改動

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace ServerProvider.Controllers
{
    [Route("api/[controller]")]
    [ApiController]
    public class ValuesController : ControllerBase
    {
        // GET api/values
        [HttpGet]
        public ActionResult<IEnumerable<string>> Get()
        {
            return new string[] { "this is serverprovider's result" };
        }

    }
}

ServerConsumer項目

新增Dockerfile

FROM microsoft/dotnet:2.1-aspnetcore-runtime
MAINTAINER yishi.chen

LABEL description="this is a serverconsumer website"
LABEL version="1.0"

ARG consumerport

WORKDIR /app
COPY bin/Release/netcoreapp2.1/publish/ .
EXPOSE $consumerport
ENTRYPOINT ["dotnet","ServerComsumer.dll"]

Program.cs改動

        public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
            WebHost.CreateDefaultBuilder(args)
                .UseUrls($"http://*:{Environment.GetEnvironmentVariable("consumerport")}")
                .UseStartup<Startup>();

ValueController.cs改動

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;

namespace ServerComsumer.Controllers
{
    [Route("api/[controller]")]
    [ApiController]
    public class ValuesController : ControllerBase
    {
        // GET api/values
        [HttpGet]
        public ActionResult<IEnumerable<string>> Get()
        {
            return new string[] { "value1", "value2" };
        }

        // GET api/values/5
        [HttpGet("{id}")]
        public async Task<ActionResult<string>> Get(int id)
        {
            var httpClient = new HttpClient();
            httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
            return await httpClient.GetAsync(Environment.GetEnvironmentVariable("serverurl")).Result.Content.ReadAsStringAsync();
        }
    }
}

新建docker-compose.yml編排文件

內容如下(docker-compose的配置請見https://www.cnblogs.com/chenyishi/p/9965479.html):

version: '3'
services:
  s_provider:
    build:
      context: ./ServerProvider/
      dockerfile: Dockerfile
      args:
        serverport: 1000
    ports:
      - "1000:1000"
    environment:
      serverport: 1000
    container_name: c_provider
  s_consumer:
    build:
      context: ./ServerComsumer/
      dockerfile: Dockerfile
      args:
        consumerport: 2000
    ports:
      - "2000:2000"
    links:
      - s_provider:s_provider
    environment:
      consumerport: 2000
      serverurl: http://s_provider:1000/api/values/
    container_name: c_consumer

 4.定位到docker-compose文件所在目錄,運行docker-compose

[root@cys-test-centos WebDocker]# docker-compose up

運行成功,狀態如下:

5.另起一個命令視窗,測試介面

[root@cys-test-centos ~]# curl http://localhost:1000/api/values
["this is serverprovider's result"]
root@cys-test-centos ~]# curl http://localhost:2000/api/values
["value1","value2"]
[root@cys-test-centos ~]# curl http://localhost:2000/api/values/1
["this is serverprovider's result"]

以上是通過docker-compose 新建鏡像,並運行容器,如果鏡像已存在,則可以去掉構建的過程,我們稍微對docker-compose文件做一下調整

6.在上面步驟的前提下,先CtrlC停止容器,然後docker-compsoe down刪除容器

[root@cys-test-centos WebDocker]# docker-compose down
Removing c_consumer ... done
Removing c_provider ... done
Removing network webdocker_default

7.查看生成的鏡像

[root@cys-test-centos WebDocker]# docker images
REPOSITORY             TAG                      IMAGE ID            CREATED             SIZE
webdocker_s_consumer   latest                   cc95654856e1        17 minutes ago      253MB
webdocker_s_provider   latest                   5b744758b56b        17 minutes ago      253MB
microsoft/dotnet       2.1-aspnetcore-runtime   db366d73508b        4 days ago          253MB

鏡像名為:webdocker_s_provider與webdocker_s_consumer

8.修改docker-compose.yml文件

version: '3'
services:
  s_provider:
    image: webdocker_s_provider
    ports:
      - "1000:1000"
    environment:
      serverport: 1000
    container_name: c_provider
  s_consumer:
    image: webdocker_s_consumer
    ports:
      - "2000:2000"
    links:
      - s_provider:s_provider
    environment:
      consumerport: 2000
      serverurl: http://s_provider:1000/api/values/
    container_name: c_consumer

9.驗證介面

[root@cys-test-centos ~]# curl http://localhost:2000/api/values/1
["this is serverprovider's result"]

 

到此Docker-Compose介紹完畢,下一章講Docker三劍客之Docker-machine


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 這是前端code 這是xxx.aspx 頁面內的方法 ...
  • WPF實現窗體中的懸浮按鈕,按鈕可拖動,吸附停靠在窗體邊緣。 控制項XAML代碼: <Button x:Class="SunCreate.Common.Controls.FloatButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/p ...
  • [外包]!採用asp.net core 快速構建小型創業公司後臺管理系統(一) ...
  • 1、最近一直在用bootstrap table 這個前端框架做項目,下麵是使用bootstrap table 的一些總結 這個使用.Net 中MVC做的: 2、這個是基本的boostrap table 的 架構 ,下麵的 【 queryParams:function (params){ } 】中是傳 ...
  • TimeSpan的相關屬性 返回時間差的格式 ts3.ToString("g") 0:00:07.171 //我只用了這一種,其餘的沒有使用過,暫且先記錄下來 ts3.ToString("c") 00:00:07.1710000 ts3.ToString("G") 0:00:00:07.171000 ...
  • 1、新建WPF空白項目。 2、NuGet 程式包中安裝 3、根據MVVM分層結構,建立包含Model、View、ViewModel三層文件夾 如圖: 1、View負責前端展示,與ViewModel進行數據和命令的交互。 2、ViewModel,負責前端視圖業務級別的邏輯結構組織,並將其反饋給前端。 ...
  • public static class ExtensionMethods{/// <summary>/// 將List轉換成DataTable/// </summary>/// <typeparam name="T"></typeparam>/// <param name="data"></para ...
  • 可解決: 文本框控制項中的按鈕,DataGridColumnHeader中加入Filter控制項。。。 cs文件中的 附加屬性 + 樣式文件中的 template+控制項 -> visibility , 製作出 XAML文件中<TextBox Controls:TextBoxHelper.ClearTex ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...