Has any one tried linking container running in different host (one daemon run in linux and other in windows server) thru container LINK mechanism.
I tried linking two container: one running on windows host with container running on linux host thru IP but not thru port linking. MySQL container run in Windows docker host and my Java app runs in Linux Docker host. I am making my Java app connect to MySQL
thru IP address. This is one basic way of linking two container and it works successfully.
But I am looking to leverage Docker link option.
I am able to link container if they all run in same daemon (same host ) but not getting idea how to link if they run in two different port.
I believe docker compose and kubernetes are basically for container orchestration, probably they may solve my problem. But I am not sure docker compose or kubernetes can detect Windows docker host and orchestrate.
Any thoughts on it ?