Oliver Sabiniarz
Oliver Sabiniarz
Also tried it out inside a docker container running Linux, does not work as well. ```docker FROM golang:1.11.2-stretch WORKDIR /app COPY . . RUN go get github.com/mlabouardy/swaggymnia CMD ["/bin/bash"] ```...
Are there any plans for implementing this?
To be even more specific: It seems like one must specify the label on the VM and on the VMI object (inside the template section of the VM resource). When...
I found a temporary fix in this thread: https://bugs.launchpad.net/cloud-images/+bug/1874453 ```ruby config.vm.provider 'virtualbox' do |v| v.memory = ENV.fetch('RAILS_DEV_BOX_RAM', 2048).to_i v.cpus = ENV.fetch('RAILS_DEV_BOX_CPUS', 2).to_i v.customize [ "modifyvm", :id, "--uartmode1", "file", File::NULL ]...