docker compose file for nova api, conductor and scheduler.

Change-Id: I2341f4b00ece5fb643a0436f30e1065fc1d037b1
This commit is contained in:
Ian Main 2015-03-12 13:19:13 -07:00
parent 787f5d1b80
commit 7a23a94f9c

View File

@ -0,0 +1,26 @@
novaconductor:
image: kollaglue/centos-rdo-nova-conductor:latest
name: nova-conductor
net: "host"
restart: always
env_file:
- openstack.env
# Unfortunately nova api needs to be privileged as it wants to run
# a firewall command.
novaapi:
image: kollaglue/centos-rdo-nova-api:latest
name: nova-api
privileged: True
net: "host"
restart: always
env_file:
- openstack.env
novascheduler:
image: kollaglue/centos-rdo-nova-scheduler:latest
name: nova-scheduler
net: "host"
restart: always
env_file:
- openstack.env