72d1ef47dd
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
19 lines
374 B
YAML
19 lines
374 B
YAML
cinderdata:
|
|
image: kollaglue/centos-rdo-cinder-data:latest
|
|
name: cinderdata
|
|
restart: on-failure
|
|
|
|
cindervolume:
|
|
image: kollaglue/centos-rdo-cinder-volume:latest
|
|
name: cinder-volume
|
|
net: host
|
|
privileged: true
|
|
restart: always
|
|
env_file:
|
|
- openstack.env
|
|
volumes:
|
|
- /lib/modules:/lib/modules:ro
|
|
- /dev:/dev
|
|
volumes_from:
|
|
- cinderdata
|