Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Amazon ECS 中设置微服务。如何配置 JVM 参数并将其传递给微服务?
您可以在 Dockerfile 中设置一个 ENTRYPOINT,例如:ENTRYPOINT ["java","-Xms1024m","-Xmx1800m","-jar","/app.jar"]
env我们通过将它们作为变量传递给任务来做这种事情。在任务中编辑容器时,向下滚动到以下Env Variables部分:
env
Env Variables
env然后,您可以在启动应用程序时在命令行上将这些作为普通变量引用。