kolla/compose/nova-compute-network.yml
Ryan Hallisey 72d1ef47dd Add cinder into the docker compose setup
This patch adds the docker-compose files, updates the docs,
and adds cinder to the start command.

Implements: blueprint container-set-storage-operation

Change-Id: I5386851e2247c00696704dc26a8a286451d4bf59
2015-06-19 13:15:48 -04:00

50 lines
974 B
YAML

computedata:
image: kollaglue/centos-rdo-nova-compute-data:latest
name: computedata
libvirt:
image: kollaglue/centos-rdo-nova-libvirt:latest
name: libvirt
net: host
pid: host
privileged: true
restart: always
env_file:
- openstack.env
volumes:
- /run:/run
- /sys/fs/cgroup:/sys/fs/cgroup
- /dev:/dev
volumes_from:
- computedata
novanetwork:
image: kollaglue/centos-rdo-nova-network:latest
name: nova-network
net: host
privileged: true
restart: always
env_file:
- openstack.env
volumes:
- /run:/run
- /sys/fs/cgroup:/sys/fs/cgroup
- /lib/modules:/lib/modules:ro
volumes_from:
- computedata
novacompute:
image: kollaglue/centos-rdo-nova-compute:latest
name: nova-compute
net: host
privileged: true
restart: always
env_file:
- openstack.env
volumes:
- /run:/run
- /sys/fs/cgroup:/sys/fs/cgroup
- /dev:/dev
volumes_from:
- computedata