You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vagrant is a great tool but it has a lot of dependencies and is somewhat slower to provision VMs than docker to provision containers.
For MacOSX and Windows developers, switching to docker shouldn't be an issue.
For Linux users, there are only benefits (smaller memory footprint, increased responsivity, etc...)
The text was updated successfully, but these errors were encountered:
I see only one problem which I cannot answer: Is it possible to "share" a local directory with a Docker container? The advantage of Vagrant is that you can compile/test in the VM while you can code and commit from the outside.
Besides that, creating a Dockerfile is pretty easy since we only need the ubuntu trusty 64bit image as a base and then execute the vagrant scripts.
This CL adds docker images with `go` and LLVM/CLang installed.
- go-clang/base holds a `go` install under `/usr/lib/go` and points GOPATH at /go
- go-clang/build holds a LLVM install
Fixesgo-clang#100.
Vagrant
is a great tool but it has a lot of dependencies and is somewhat slower to provision VMs thandocker
to provision containers.For
MacOSX
andWindows
developers, switching todocker
shouldn't be an issue.For
Linux
users, there are only benefits (smaller memory footprint, increased responsivity, etc...)The text was updated successfully, but these errors were encountered: