kolla/compose/nova-api-conductor-scheduler.yml
Ian Main 7a23a94f9c docker compose file for nova api, conductor and scheduler.
Change-Id: I2341f4b00ece5fb643a0436f30e1065fc1d037b1
2015-03-12 19:33:12 -07:00

27 lines
551 B
YAML

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