Reputation: 691
I am using a Vagrant image (https://app.vagrantup.com/scratchpads/boxes/aegir-scratchpads2/versions/1.0.1) to deploy a virtual box machine with everything working but i have a problem... i want to use Docker instead of Vagrant for this (since i want it in the cloud).
Is there any way to use Docker to deploy this Vagrant image instead of it creating a Virtual Box machine with Vagrant (or get the vagrant complete config with everything it installs for it to run)?
Upvotes: 1
Views: 917
Reputation: 71
Docker and vagrant both serve for different purposes
It is not possible to boot docker containers with vagrant image
You need to create a docker image
The process to create a docker image is pretty easy
Check out Docker docs to know how to build images
Upvotes: 4