要创建将使用模板引擎生成内容的配置,请使用--template-driver参数并将引擎名称指定为其参数。创建容器时将呈现模板。
1.将以下内容保存到一个新文件中index.html.tmpl。
2.将index.html.tmpl文件另存为名为homepage. 提供参数--template-driver并指定golang为模板引擎。
$ docker config create --template-driver golang homepage index.html.tmpl
3.创建一个运行 Nginx 并有权访问环境变量 HELLO 和配置的服务。
$ docker service create
--name hello-template
--env HELLO="Docker"
--config source=homepage,target=/usr/share/nginx/html/index.html
--publish published=3000,target=80
nginx:alpine
验证服务是否可运行:您可以访问 Nginx 服务器,并且正在提供正确的输出。