两个独立的Docker容器是否可以通过ZMQ IPC套接字进行通信?如果是这样,怎么能实现呢?
例如:
Docker Container #1 executes an application that creates a ZMQ Response socket and binds to “ipc://tmp/service_name”.
Docker Container #2 executes an application that creates a ZMQ Request socket and connects to “ipc://tmp/service_name”.
以下命令用于在两个单独的docker容器中运行应用程序:
// Run container #1 (binds to "ipc://tmp/service_name")
docker run --name c1 -it container1
// Run container #2 (connects to "ipc://tmp/service_name")
docker run -it --link c1:container1 --name c2 container2
运行容器后,我无法建立ZMQ(IPC)连接.但是,我能够从容器2 ping容器1,并从容器1 ping容器2.
我也尝试使用–ipc命令,但它没有帮助:
// Run container #1 (binds to "ipc://tmp/service_name")
docker run --name c1 --ipc=host -it container1
// Run container #2 (connects to "ipc://tmp/service_name")
docker run -it --link c1:container1 --ipc=container:c1 --name c2 container2
更新:
我能够使用ZMQ TCP套接字在两个单独的Docker容器之间进行通信,但仍然无法使用IPC套接字进行通信.可能吗?
最佳答案
你见过Shared Memory with Docker containers (docker version 1.4.1)吗?听起来您需要共享IPC所在的卷,并设置–ipc host.在您的示例中,它将类似于:
原文链接:https://www.f2er.com/docker/435964.html# Container #1
docker run -it --name c1 -v /tmp:/tmp --ipc=host container1
# Container #2
docker run -it --name c2 -v /tmp:/tmp --ipc=host container2