我已经从 json 文件创建了一个 docker 配置,我需要我的 node.js 应用程序从配置中读取值(json),我怎样才能实现这一点?
docker config create my_config ./config.json
>dg426haahpi5ezmkkj5kyl3sn
docker config ls
>ID NAME CREATED UPDATED
dg426haahpi5ezmkkj5kyl3sn my_config 7 seconds ago 7 seconds ago
docker 配置已安装到服务中。
compose.yml
configs:
node_config:
external: true
name: my_config
services:
my_node_service:
image: node:lts
configs:
- source: node_config
target: /app/config.json