Skip to content

Instantly share code, notes, and snippets.

@kekru
Created November 3, 2016 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kekru/31d84109a4e021562774dcfa9e1f8dce to your computer and use it in GitHub Desktop.
Save kekru/31d84109a4e021562774dcfa9e1f8dce to your computer and use it in GitHub Desktop.
Start Docker in VM with a simple command

Start a VM with Docker with a simple command

This is how to easily setup a VM with Docker and Docker Remote API enabled.
We use VirtualBox, Vagrant and Docker for that.

First install VirtualBox https://www.virtualbox.org/wiki/Downloads
and Vagrant https://www.vagrantup.com/downloads.html

Run vagrant version to check that vagrant is correctly installed.

Save the Vagrantfile from this gist to a local directory.
Go inside the directory and run vagrant up. The first startup will take a few minutes to download everything.
Then you have a ready to use Virtual Machine with Docker.

Stop VM

To STOP, but not delete the VM run vagrant suspend.
To DELETE the VM run vagrant destroy.

Restart VM

Restart the VM with vagrant up

Login to VM with a terminal

Run vagrant ssh to login to your VM.
On Windows you might have to put ssh.exe to your %PATH%. If you have installed git, you can use C:\Program Files\Git\usr\bin
You can also login via Putty on host: "localhost", Port "2222", login: "vagrant", password: "vagrant".

Vagrant.configure(2) do |config|
#The Virtual Machine runs with Ubuntu 14.04 (Trusty Tahr) 64 Bit
config.vm.box = "ubuntu/trusty64"
#Wait max 10 minutes (600 seconds) to start VM without provisioning
config.vm.boot_timeout = 600
#use DHCP to get IP address
config.vm.network "private_network", type: "dhcp"
# use this, instead of DHCP (see above), to set a static ip
#config.vm.network "private_network", ip: "10.1.6.210"
#1GB RAM for VM
config.vm.provider :virtualbox do |p|
p.customize ["modifyvm", :id, "--memory", 1024]
end
#Show ip address
config.vm.provision "shell", inline: "ifconfig"
#stop running docker containers
config.vm.provision "shell", inline: "sh -c 'docker stop $(docker ps -aq) && docker rm $(docker ps -aq); true'"
#Install Docker
config.vm.provision "docker" do |d|
end
#expose docker remote api
config.vm.provision "shell", inline: "chmod 666 /var/run/docker.sock"
config.vm.provision "shell", inline: "docker run -p 2375:2375 -d -v /var/run/docker.sock:/var/run/docker.sock:ro jarkt/docker-remote-api"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment