pmcpimentel
pmcpimentel

Reputation: 691

How can i use Docker to deploy a Vagrant image?

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

Answers (1)

sairam546
sairam546

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

Related Questions