我如何使用bash将环境传递给docker?

前端之家收集整理的这篇文章主要介绍了我如何使用bash将环境传递给docker?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

以下在docker中工作正常:

docker run -i -t -rm -e a="hello world" b=world ubuntu /bin/bash

它的作用是将值为“hello world”的env var a和值为“world”的env var b传递到docker容器中.

事实是,我需要从脚本中生成它.

这对于没有空间的环境变得非常容易:

ENV_VARS='-e a=helloworld b=world'
docker run -i -t -rm $ENV_VARS ubuntu /bin/bash

但是,一旦env var中有空格,我就会被冲洗:

ENV_VARS='-e a="hello world" b=world'
docker run -i -t -rm $ENV_VARS ubuntu /bin/bash

Unable to find image 'world"' (tag: latest) locally
2014/01/15 16:28:40 Invalid repository name (world"),only [a-z0-9-_.] are allowed

如何让上面的例子工作?我也试过数组,但无法让它们工作.

Bash阵列旨在解决这类问题

第一步是声明数组:

docker_env=(-e "a=hello world" "b=world")

它允许您以编程方式填充更多环境变量,例如:

docker_env+=("c=foo bar")

最后运行它:

docker run -i -t -rm "${docker_env[@]}" ubuntu /bin/bash
原文链接:https://www.f2er.com/docker/436527.html

猜你在找的Docker相关文章