Skip to content

Instantly share code, notes, and snippets.

@komljen
Last active August 29, 2015 14:11
Show Gist options
  • Save komljen/63d4f51c685a535f45a6 to your computer and use it in GitHub Desktop.
Save komljen/63d4f51c685a535f45a6 to your computer and use it in GitHub Desktop.
Vagrantfile for Ubuntu Snappy with Docker
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "Snappy.box"
config.vm.box_url = "https://dl.dropboxusercontent.com/s/cd9cfhrmraif1op/Snappy.box"
config.vm.synced_folder '.', '/vagrant', disabled: true
config.ssh.username = "ubuntu"
config.ssh.password = "ubuntu"
config.vm.provider "virtualbox" do |v|
v.memory = 1024
end
end
@komljen
Copy link
Author

komljen commented Dec 10, 2014

Provided Vagrant box is created from http://cdimage.ubuntu.com/ubuntu-core/preview/ubuntu-core-alpha-01.img image and it has docker installed.

@komljen
Copy link
Author

komljen commented Dec 10, 2014

Run this box:

wget https://gist.githubusercontent.com/komljen/63d4f51c685a535f45a6/raw/f5d2feb5ba26a65d2330ab60842885b2553dcb53/Vagrantfile
vagrant up

@htdvisser
Copy link

Nice. Now let's wait for snappy Guest Additions to forward ports and do fun stuff :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment