I have been trying to assign one of my five public ip\'s to my docker container. It seems like this should be possible because of the nature of docker and its uses. I found this
Possible Solution but I can't test it right now. Please let me know if this is incorrect.
Make virtual network interface with macvlan:
See https://superuser.com/questions/175475/ip-address-alias-assigned-by-dhcp
commands:
ip link add dev macvlan0 link eth0 type macvlan #macvlan0 being the name of the v-card (lol)
Connect container to virtual network interface with pipework:
see https://github.com/jpetazzo/pipework/#connect-a-container-to-a-local-physical-interface
commands:
pipework macvlan0 $($containerid) dhcp