环境变量不会在所有 bash 会话中持续存在。当容器运行时,它将仅在该入口点会话中可用,但稍后如果使用export
.
docker ENV 与 RUN 导出
如果你想在所有会话中使用,你应该在 Dockerfile 中设置它们。
ENV SCHEME=http
ENV HOST=example.com
ENV PORT=3000
在应用程序端,您可以一起使用它们。它也将可用于所有会话。
curl "${SCHEME}://${HOST}:${PORT}
#
Step 8/9 : RUN echo "${SCHEME}://${HOST}:${PORT}"
---> Running in afab41115019
http://example.com:3000
现在,如果我们调查您使用的方式,它不会起作用,因为
export URL="$SCHEME://$HOST:$PORT"
# only in this session
echo "URL:$URL"
# will be available for node process too but for this session only
node app.js
例如查看这个 Dockerfile
FROM node:alpine
RUN echo $'#!/bin/sh \n\
export URL=example.com \n\
echo "${URL}" \n\
node -e \'console.log("ENV URL value inside nodejs", process.env.URL)\' \n\
exec "$@" \n\
' >> /bin/entrypoint.sh
RUN chmod +x /bin/entrypoint.sh
entrypoint ["entrypoint.sh"]
因此,当您第一次运行 docker 容器时,您将能够看到预期的响应。
docker run -it --rm myapp
example.com
ENV URL value inside nodejs example.com
现在我们要检查以后的会话。
docker run -it --rm abc tail -f /dev/null
example.com
ENV URL value inside nodejs example.com
所以容器在这段时间内是启动的,我们可以验证另一个会话
docker exec -it myapp sh -c "node -e 'console.log(\"ENV URL value inside nodejs\", process.env.URL)'"
ENV URL value inside nodejs undefined
由于 docker 我们可以使用相同的脚本但行为不同,因此该变量仅在该会话中可用,如果您对以后使用感兴趣,可以将它们写入文件。