英文:
How to specify the base docker image I want to use in the application.properties, using Quarkus
问题
我正在尝试使用 Quarkus,只是想知道是否有可能在 application.properties 中指定 Docker 镜像。
英文:
I'm trying Quarkus and was just wondering if there is a possibility to specify the docker image in the application.properties.
答案1
得分: 1
这在我们的项目中是要在构建过程中生成Dockerfiles的,如果我们这样做的话,配置基础镜像将会成为可能。
但目前需要调整我们在生成项目时创建的Dockerfiles。
英文:
It's in our projects to generate the Dockerfiles during the build at some point and, if we do that, configuring the base image will be possible.
But for now, you need to tweak the Dockerfiles we create when generating the project.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论