我正在从码头工作文件转移到使用docker swarm,但我无法解决这个问题。
我有两个服务 - 一个nginx代理,一个网站在docker swarm中运行得很好(有三个节点)
我遇到的问题是我需要将nginx配置为proxy_pass到后端网站。目前,唯一可以实现此功能的方法是指定其中一个节点的IP地址。
我的服务创建如下:
docker service create --mount type=bind,source=/../nginx.conf,target=/etc/nginx/conf.d/default.conf \
-p 443:443 \
--name nginx \
nginx
和
docker service create --name ynab \
-p 5000:5000 \
--replicas 2 \
scottrobertson/fintech-to-ynab
我已尝试使用服务名称,但该功能无效。
我真的不认为我甚至不得不暴露ynab服务端口(至少在使用docker-compose时会起作用)
在其中一个nginx容器中,我尝试了以下方法:
root@5fabc5611264:/# curl http://ynab:5000/ping
curl: (6) Could not resolve host: ynab
root@5fabc5611264:/# curl http://nginx:5000/ping
curl: (6) Could not resolve host: nginx
root@5fabc5611264:/# curl http://127.0.0.1:5000/ping
curl: (7) Failed to connect to 127.0.0.1 port 5000: Connection refused
root@5fabc5611264:/# curl http://localhost:5000/ping
curl: (7) Failed to connect to localhost port 5000: Connection refused
使用进程列表我尝试连接到正在运行的实例id,并命名:
root@5fabc5611264:/# curl http://ynab.1:5000/ping
curl: (6) Could not resolve host: ynab.1
root@5fabc5611264:/# curl http://pj0ekc6i7n0v:5000/ping
curl: (6) Could not resolve host: pj0ekc6i7n0v
但是如果我使用节点公共IP地址,我只能让它工作:
root@5fabc5611264:/# curl http://192.168.1.52:5000/ping
pong
root@5fabc5611264:/# curl http://192.168.1.53:5000/ping
pong
root@5fabc5611264:/# curl http://192.168.1.51:5000/ping
pong
如果节点出现故障,我真的不想使用公共IP。我确定我一定是做错了什么!
答案 0 :(得分:1)
需要将服务连接到同一网络才能实现此目的。
$ docker network create -d overlay fake-internet-points
$ docker service create --name service_one --network fake-internet-points [...]
$ docker service create --name service_two --network fake-internet-points [...]