Is there any to way to communicate among docker containers other than via sockets/network? May be it can be IPC or some other means. Is it feasible?
I have read docker documentation which says we can link docker containers using --link option but it doesn't speicify how to transfer data/msg from one container to another. I have already created a container named checkram. Now I want to link a new container with this container and I run docker run -i -t --privileged --link=checkram:linkcheck --name linkcont topimg
command. Then i checked env variable LINKCHECK_PORT
in linkcont container which contains tcp://172.17.0.14:22
. I don't know what to do with this ip and port and how to communicate with checkram container from linkcont container. can anyone help me out of this? Thanks in advance.