How to use this box with Vagrant:

Vagrant.configure("2") do |config|
  config.vm.box = "uledwin/alpine_docker"
  config.vm.box_version = "0.0.1"
end
vagrant init uledwin/alpine_docker \
  --box-version 0.0.1
vagrant up

This version was created over 1 year ago.

Alpine Linux with Docker installed in it


Vagrant.configure("2") do |config|
  config.vm.box = "generic/alpine38"
  config.vm.provision "shell", inline: <<-SHELL
      apk update
      apk add docker
      rc-update add docker boot
      addgroup vagrant docker
      service docker start
  SHELL
end
1 provider for this version.
  • virtualbox
    unknown Hosted by Vagrant Cloud (248 MB)