Docker, Vagrant and VMWare Fusion
woss.name
Docker, Vagrant and VMWare Fusion
1–10 of 12 posts
Re: Docker, Vagrant and VMWare Fusion
#2Re: Docker, Vagrant and VMWare Fusion
#3 sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
"All we’re doing is installing the latest stable version of Docker, direct from Docker’s own apt repository, configuring it to listen for both TCP and socket connections, updating the rest of the system, and installing avahi for multicast DNS resolution."Installing avahi for multicast DNS resolution? Why does he need avahi? Why does he need multicast DNS resolution?
[Update: I don't know why the person that replied deleted their comment, because it was useful info. Here it is, for posterity:
1) Add's the docker key from the Ubuntu keyserver, which is already trusted, so the docker packages can be installed.
2) Avahi lets him name his docker containers and then discover them on the local mac os host and the linux VM, eg wossname.nginx, rather than some dynamically assigned IP.]
Re: Docker, Vagrant and VMWare Fusion
#4Can anyone shed some light on what the following does and why it's necessary? sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 "All we’re doing is installing the latest stable version of Docker, direct from Docker’s own apt repository, configuring it to listen for both TCP and socket connections, updating the rest of the system, and installing avahi for m…
Re: Docker, Vagrant and VMWare Fusion
#5 The Vagrant support for Docker uses boot2docker, which only supports VirtualBox, so I’m left high and dry.
You can use a proxy Vagrantfile to configure the type of machine that is used as the Docker host [2]. Unfortunately there is a bug [3] that make this not quite usable yet.1. https://docs.vagrantup.com/v2/docker/index.html
Re: Docker, Vagrant and VMWare Fusion
#6Can anyone shed some light on what the following does and why it's necessary? sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9 "All we’re doing is installing the latest stable version of Docker, direct from Docker’s own apt repository, configuring it to listen for both TCP and socket connections, updating the rest of the system, and installing avahi for m…
[deleted]
Re: Docker, Vagrant and VMWare Fusion
#7Re: Docker, Vagrant and VMWare Fusion
#8Good lord, what a mess. How did it get this complicated?
Re: Docker, Vagrant and VMWare Fusion
#9Good lord, what a mess. How did it get this complicated?
"The trouble is that I’m obstinate: I’ve paid for a VMWare Fusion license, and I’m insisting on using it."
VirtualBox is free, and all the work to make Docker run easily has already been done. But the author only wants to use VMWare, so it got complicated.
Re: Docker, Vagrant and VMWare Fusion
#10Good lord, what a mess. How did it get this complicated?
It is messy because VM layer is unnecessary. If OSX had native support for containers or if ur dev laptop was linux then all you had to do was use docker directly with dockerfile. That is the purpose of docker. To make usage of container virtualization easy and standardized and to be used directly on baremetal. All the convolutions introduced by the VM virtualization will evaporate as container support becomes standa…