f1dbf25797
Remove all data containers from the repository except the one image we intend to reuse for each data container. Adjust compose files to remove all references to the unique data containers which serve no purpose other then to take up extra resources. Needs VOLUME in data containers exported in the compose files. Change-Id: Id7746110946ef9836180cf57302aaf827e7e5405 Partially-Implements: blueprint one-data-container
19 lines
367 B
YAML
19 lines
367 B
YAML
cinderdata:
|
|
image: kollaglue/centos-rdo-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
|