0

Vagrant vs Docker.

Which one do you use? And why? 🤔

Comments
  • 4
    Vagrant is a tool for building and managing virtual machine environments in a single workflow: https://vagrantup.com/intro/...

    Docker: A container image is a lightweight, stand-alone, executable package of a piece of software that includes everything needed to run it: code, runtime, system tools, system libraries, settings: https://docker.com/what-container/

    There is a big difference between VM and container, if you want a lightweight solution, docker it is, if you want the easy solution vargrant it is, though I still find docker easier but everyone I know says the opposite
  • 1
    @gitpush thanks for your feedback. I've used both. And I was looking to find out what people are using in their local development servers.
  • 0
    @ivoecpereira I'm using Docker, it is too lightweight.

    I had three containers running on a 512MB RAM server, containers are:

    1. MySQL

    2. DotnetCore

    3. OpenVPN
Add Comment