英文:
What is application server in base image?
问题
在基础镜像中,该命令使用了-Dquarkus.http.host=0.0.0.0
。我的Quarkus应用程序使用了Kafka,我不认为需要暴露HTTP服务器。如何不暴露这个HTTP端点?此外,这个端点是否与quarkus-resteasy-reactive-jackson
扩展有关?
英文:
In the base image, the command uses -Dquarkus.http.host=0.0.0.0
. My Quarkus application uses Kafka and I don't see the need to expose a HTTP server. How do I not expose this HTTP end-point? Also, is this end-point tied to the quarkus-resteasy-reactive-jackson
extension?
答案1
得分: 0
如果您的应用程序没有暴露HTTP服务器,则设置 quarkus.http.host
不会产生任何效果。从技术上讲,此设置由 quarkus-vertx-http
扩展使用。
此外,如果您希望的话,您总是可以覆盖Docker的 CMD
指令。
英文:
If your application does not expose an HTTP server, setting quarkus.http.host
will have no effect.
More technically, this setting is used by the quarkus-vertx-http
extension.
Furthermore, you can always override the docker CMD
instruction if you want to.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论