Paul Verest
Paul Verest

Reputation: 63872

OpenStack and Docker

When building private cloud using OpenStack, I would like it to support deploying and running Docker images, i.e. containers.

I find some announcements about Cloud Native Computing Foundation, and vendor specific positions e.g. of Red Hat

But as of September 2016, I can't find ready to use solution.

How to make a private cloud supporting Docker?

Upvotes: 0

Views: 1199

Answers (2)

tigerlinux
tigerlinux

Reputation: 366

Consider also use nova-docker if you want to directly use docker instead of QEMU/KVM Hypervisors:

https://github.com/openstack/nova-docker

Upvotes: 1

Jayaprakash
Jayaprakash

Reputation: 763

  • Install & launch docker containers inside an Openstack nova VM.
  • Configuring Openstack setup compute driver as Docker driver itself. In this case, all the nova instances launched will be of docker container and the docker images can be stored in glance. Refer openstack docker wiki for further details

Upvotes: 1

Related Questions