Hello,
New to docker overall but was enthusiastically encouraged by a friend so I gave it a shot. I have taken a look into it but I have some questions about specifying IP’s.
What I would like to do is assign a container an ip that exists as a virtual IP on my host. So my physical ubuntu install has more that one IP. Like so;
eno1 192.168.0.10
eno1:1 192.168.0.4
eno1:2 192.168.0.5
So now I want to create a container for say Subsonic audio server and hang it off 192.168.0.4
And I want to create a OwnCloud container and hang it off 192.168.0.5
I do this now on a server without Docker and each service while more resource intensive, they cant each run their service off port 80 on their respective IP’s.
Is this possible with compose? Will it still wind up being a bridged situation? I seem to be finding mixed information online.