Last active
August 24, 2018 12:12
-
-
Save avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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