gpt4 book ai didi

docker - 链接和主机名docker compose

转载 作者:行者123 更新时间:2023-12-02 21:21:02 25 4
gpt4 key购买 nike

我在docker-compose文件中定义了两个服务,并希望将服务名称映射到主机条目,以便可以将数据发送到mongo db服务中的端点,例如在我的主机上

127.0.0.1 dotcomtest.net

如果我有一个名为 web的服务和一个名为 echo-chamber的服务,如何在我的Web容器(或docker compose文件)中设置主机文件,以便我可以将请求发送到该端点,即 http://dotcomtest.net/query_string?
谢谢

最佳答案

当它们都在同一网络上运行时,这是可能的。所以最好是将它们都放在docker-compose文件中

version: '3'
services:
nginx1:
image: nginx
ports:
- "8082:80"
nginx2:
image: nginx
ports:
- "8081:80"
networks:
default:
aliases:
- dotcomtest.net

当我完成此合成并使用以下命令转到 nginx1容器时
docker-compose exec nginx1 bash

并执行以下命令
root@cabf18b17f34:/# apt update && apt install -y curl
root@cabf18b17f34:/# curl http://dotcomtest.net
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
body {
width: 35em;
margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif;
}
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>

如您所见,我的nginx1容器有权访问nginx2

关于docker - 链接和主机名docker compose,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45615203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com