Skip to content

Instantly share code, notes, and snippets.

@avatsaev
Last active August 24, 2018 12:12
Show Gist options
  • Select an option

  • Save avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.

Select an option

Save avatsaev/7494573c01cf233b6bd4bdcc5d89c564 to your computer and use it in GitHub Desktop.

Revisions

  1. avatsaev revised this gist Aug 24, 2018. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Vagrantfile
    Original 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: "enp0s31f6"
    config.vm.network "public_network", bridge: "eth1"

    config.vm.provider "virtualbox" do |vb|
    vb.memory = 2000
  2. avatsaev created this gist Aug 24, 2018.
    18 changes: 18 additions & 0 deletions Vagrantfile
    Original 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