作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在设置一个 Spring 应用程序以使用 compose 运行。应用程序需要建立到 ActiveMQ 的连接,要么是为开发人员在本地运行,要么是到现有实例以进行登台/生产。
我设置了以下对本地开发人员非常有用的设置:
amq:
image: rmohr/activemq:latest
ports:
- "61616:61616"
- "8161:8161"
legacy-bridge:
image: myco/myservice
links:
- amq
broker-url=tcp://amq:61616
broker-url=tcp://some.host.here:61616
的内容。或者找到某种方法在我的生产 docker-compose.yml 中创建一个 dns 条目,该条目将指向
amq
dns 进入相关的登台或生产队列。
最佳答案
使用 extra_hosts
旗帜
首先想到的是使用 Compose's extra_hosts
旗帜:
legacy-bridge:
image: myco/myservice
extra_hosts:
- "amq:1.2.3.4"
/etc/hosts
中创建一个条目。文件,有效地允许您继续使用
tcp://amq:61616
作为您应用程序中的代理 URL。
amq-ambassador:
image: svendowideit/ambassador
command: ["your-amq-dns-name", "61616"]
ports:
- 61616
legacy-bridge:
image: myco/myservice
links:
- "amq-ambassador:amq"
关于docker - 如何为 Docker Compose 配置 dns 条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42175951/
我是一名优秀的程序员,十分优秀!