How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "ailispaw/barge"
end
vagrant init ailispaw/barge
vagrant up

This version was created over 2 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2022.05 with Linux kernel v4.14.282 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.1.34
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 14.6 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.56.101"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created over 5 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2019.05 with Linux kernel v4.14.125 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.0.4
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.8 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created over 5 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2019.02.2 with Linux kernel v4.14.118 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.0.4
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.8 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created over 5 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2019.02.1 with Linux kernel v4.14.111 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.0.4
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.8 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created over 5 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2019.02 with Linux kernel v4.14.105 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.0.4
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.8 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created over 5 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2018.11.2 with Linux kernel v4.14.98 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only) with VirtualBox Guest Addition v6.0.4
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.6 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created almost 6 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2018.11.1 with Linux kernel v4.14.91 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only)
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.3 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created almost 6 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2018.11 with Linux kernel v4.14.85 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only)
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.3 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created almost 6 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2018.08.2 with Linux kernel v4.14.78 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only)
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.3 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)

This version was created almost 6 years ago.

Barge Vagrant Box

Barge is a lightweight Linux distribution built with Buildroot specifically to run Docker containers.

Features

  • Built with Buildroot 2018.08 with Linux kernel v4.14.74 and glibc.
  • Docker v1.10.3 (~ latest version)
  • Support NFS synced folder
  • Support VirtualBox Shared Folder (VirtualBox only)
  • Support Docker provisioner
  • Disable TLS of Docker for simplicity
  • Expose and forward the official IANA registered Docker port 2375
  • dumb-init binary is built-in /usr/bin
  • pkg command is built-in. You can install individual packages from Buildroot.
  • Enable to switch between Docker versions
  • 40 GB persistent disk
  • 13.3 MB

Cf.)

Vagrant up

$ vagrant box add ailispaw/barge
$ vagrant init -m ailispaw/barge
$ vagrant up

Vagrantfile

# A dummy plugin for Barge to set hostname and network correctly at the very first `vagrant up`
module VagrantPlugins
  module GuestLinux
    class Plugin < Vagrant.plugin("2")
      guest_capability("linux", "change_host_name") { Cap::ChangeHostName }
      guest_capability("linux", "configure_networks") { Cap::ConfigureNetworks }
    end
  end
end

Vagrant.configure(2) do |config|
  config.vm.define "barge"

  config.vm.box = "ailispaw/barge"

  config.vm.synced_folder ".", "/vagrant"

  # for NFS synced folder
  # config.vm.network :private_network, ip: "192.168.33.10"
  # config.vm.synced_folder ".", "/vagrant", type: "nfs",
  #   mount_options: ["nolock", "vers=3", "udp", "noatime", "actimeo=1"]

  # for RSync synced folder
  # config.vm.synced_folder ".", "/vagrant", type: "rsync",
  #   rsync__args: ["--verbose", "--archive", "--delete", "--copy-links"]

  config.vm.provision :docker do |d|
    d.pull_images "busybox"
    d.run "simple-echo",
      image: "busybox",
      args: "-p 8080:8080 -v /usr/bin/dumb-init:/dumb-init:ro --entrypoint=/dumb-init",
      cmd: "nc -p 8080 -l -l -e echo hello world!"
  end

  config.vm.network :forwarded_port, guest: 8080, host: 8080
end
1 provider for this version.
  • virtualbox
    unknown Externally hosted (github.com)
Next