Last active
August 24, 2018 12:12
-
-
Save avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.
Revisions
-
avatsaev revised this gist
Aug 24, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Vagrant.configure("2") do |config| config.vm.hostname = "swarm-node-1" config.vm.network "public_network", bridge: "eth1" config.vm.provider "virtualbox" do |vb| vb.memory = 2000 -
avatsaev created this gist
Aug 24, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ # -*- 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: "enp0s31f6" config.vm.provider "virtualbox" do |vb| vb.memory = 2000 vb.cpus = 2 end end