Vagrant 2.0
11–20 of 120 posts
Re: Vagrant 2.0
#12How does Vagrant work with Docker? Why do you need Vagrant if you're using Docker?
Re: Vagrant 2.0
#13How does Vagrant work with Docker? Why do you need Vagrant if you're using Docker?
Re: Vagrant 2.0
#14What's the use case where I'd want to use Vagrant instead of Docker?
(Vagrant also has a Docker provider, but I can't think of a good reason to use it.)
Re: Vagrant 2.0
#15How does Vagrant work with Docker? Why do you need Vagrant if you're using Docker?
Re: Vagrant 2.0
#16Re: Vagrant 2.0
#17Still doesn't support Ruby 2.4
How so? Can you not install whatever you want with Vagrant? https://rvm.io/integration/vagrant
They also killed off the gem-distributed version--which is still, to this day, a huge pain in the rear, to the point where I build my own Vagrant so it doesn't use its own weird out-of-the-way Ruby.
Re: Vagrant 2.0
#18How does Vagrant work with Docker? Why do you need Vagrant if you're using Docker?
Vagrant also claims to provide a "good workflow for writing Dockerfiles"; it can provide a nicer user abstraction over `docker [many, many args]` for running your biz [1].
Re: Vagrant 2.0
#19How does Vagrant work with Docker? Why do you need Vagrant if you're using Docker?
Vagrant lets you provision in a codified manner full-fledge VMs. This code can be pulled down by your developers to deploy a development environment on their machines. Inside of this you can choose to run containers of your apps with proper tooling built around it.
Re: Vagrant 2.0
#20since i am using docker-compose locally, i have little use for vagrant nowadays. For staging and production the docker containers run inside a Kubernetes environment which i don't want to replicate locally. Am i missing something ?