2aa2a89cdb
* Add basic support for hypervisor plugins in lib/nova_plugins * Add lib/nova_plugins/hypervisor-docker to use Docker as a Nova hypervisor. * Add tools/install_docker.sh to install the Docker daemon and registry container, download base image and import * Configure Nova to use docker plugin * Add docker exercise and skip unsupported ones Nova blueprint: new-hypervisor-docker Change-Id: I9e7065b562dce2ce853def583ab1165886612227
14 lines
299 B
Markdown
14 lines
299 B
Markdown
# DevStack on Docker
|
|
|
|
Using Docker as Nova's hypervisor requries two steps:
|
|
|
|
* Configure DevStack by adding the following to `localrc`::
|
|
|
|
VIRT_DRIVER=docker
|
|
|
|
* Download and install the Docker service and images::
|
|
|
|
tools/docker/install_docker.sh
|
|
|
|
After this, `stack.sh` should run as normal.
|