Skip to content

Commit

Permalink
fix: Remove ':' character from name as it is a reserved character in …
Browse files Browse the repository at this point in the history
…windows (#16)
  • Loading branch information
kamaroyl authored Aug 26, 2020
1 parent c4249f6 commit ef706b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# VirtualBox-specific default configuration
docker.vm.provider "virtualbox" do |vb, override|
# Set machine name, memory and CPU limits
vb.name = "debian:buster-capsule-docker"
vb.name = "debian-buster-capsule-docker"
vb.memory = 8192
vb.cpus = 4
vb.default_nic_type = "virtio"
Expand Down Expand Up @@ -102,7 +102,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# VirtualBox-specific default configuration
v.vm.provider "virtualbox" do |vb, override|
# Set machine name, memory and CPU limits
vb.name = "debian:buster-capsule-vm"
vb.name = "debian-buster-capsule-vm"
vb.memory = 8192
vb.cpus = 4
vb.default_nic_type = "virtio"
Expand Down

0 comments on commit ef706b5

Please sign in to comment.