I am experimenting with the new docker networking feature. I migrated my old setup using container links to the new bridge network; so far, I have my dedicated bridge network up and running among multiple containers on the same host.
Now I am looking for a means to replicate multiple link aliases for the same container.
Say, I have a container named myBox
that joins the docker network. I want to have the same container also reachable as myServer
.
Using links, I would simply set up two links with different aliases.
Is there a means to achieve this using docker networking?