Docker Swarm 配置檔案儲存

2022-05-17 16:55:45 字數 1113 閱讀 9586

docker swarm 配置檔案儲存

環境:

1、管理節點:宿主級當前目錄建立nginx配置檔案

vim site.conf

server 

}

2、管理節點:將site.conf儲存到docker配置儲存中

#

docker config create docker 配置檔名 本地配置檔案

docker config create site.conf site.conf

3、管理節點:建立乙個nginx並應用這個配置

docker service create \

--name nginx \

--config source=site.conf,target=/etc/nginx/conf.d/site.conf \

--publish 8080:80\

nginx:latest

#

建立服務

docker service create \

#服務名

--name nginx \

#新增配置檔案,source=docker配置檔案,target=配置檔案路徑

--config source=site.conf,target=/etc/nginx/conf.d/site.conf \

#暴露埠

--publish 8080:80\

#使用映象

nginx:latest

命令解析

4、工作節點:切換到容器檢視配置檔案

#

切換到容器內

#cat /etc/nginx/conf.d/site.conf

server

}

5、瀏覽器訪問

drbd配置檔案 drbd配置檔案

drbd配置檔案 vim usr local drbd etc drbd.d global common.conf global usage count yes 是否參加drbd使用者統計 common protocol c 使用drbd的第三種同步協議 disk 使用dpod功能保證在數 on i...

Spring配置檔案載入外部配置檔案

有時,應用程式可能需要從不同的位置 例如 檔案系統 classpath或者url 讀取外部資源 例如 文字檔案 xml檔案 屬性檔案或或者影象檔案 通常,為了從不同位置載入資源,需要和不同的api打交道。spring的資源載入器提供了乙個統一的getresource 方法,使用這個方法可以通過資源路...

mysql簡單配置檔案 MySQL配置檔案

mysql配置檔案 在windows下是my.ini,而在linux下是my.cnf。基本引數 port 3306 埠號 server id 1 basedir c program files mysql mysql server 5.5 基準路徑,其他路徑都相對於這個路徑 datadir c pr...