我有一个通过docker容器使用maven运行的Java项目。我有一个指定本地环境变量的属性文件。但是,我想在Java中或可能通过maven pom.xml或docker file / docker compose修改环境变量。

我尝试使用以下方法在docker文件中设置环境变量

ENV new_env = old_env

格式,但是当我运行docker:run时,它不起作用。这就是我得到的。
bc6cc4> Execute a program under the supervision of a valid init process (tini)
bc6cc4>
bc6cc4> Command line options:
bc6cc4>
bc6cc4>   --version: Show version and exit.
bc6cc4>   -h: Show this help message and exit.
bc6cc4>   -s: Register as a process subreaper (requires Linux >= 3.4).
bc6cc4>   -v: Generate more verbose output. Repeat up to 3 times.
bc6cc4>   -g: Send signals to the child's process group.
bc6cc4>   -l: Show license and exit.
bc6cc4>
bc6cc4> Environment variables:
bc6cc4>
bc6cc4>   TINI_SUBREAPER: Register as a process subreaper (requires Linux >= 3.4)
bc6cc4>   TINI_VERBOSITY: Set the verbosity level (default: 1)
bc6cc4>

发生这些错误后,我的项目刚刚停止,不得不手动退出。有什么建议么?

最佳答案

如果要使用docker运行,请使用-e标志

来自文档的更多信息:

https://docs.docker.com/engine/reference/run/#env-environment-variables

10-08 15:01