Skip to content

Instantly share code, notes, and snippets.

@avatsaev
Last active August 24, 2018 12:12
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 avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.
Save avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "williamyeh/ubuntu-trusty64-docker"
config.vm.hostname = "swarm-node-1"
config.vm.network "public_network", bridge: "eth1"
config.vm.provider "virtualbox" do |vb|
vb.memory = 2000
vb.cpus = 2
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment