kolla-ansible/compose/mariadb.yml
Steven Dake f1dbf25797 WIP: Remove data containers and adjust compose files
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
2015-08-24 05:46:10 -07:00

15 lines
276 B
YAML

mariadbdata:
image: kollaglue/centos-rdo-data:latest
name: mariadbdata
restart: on-failure
mariadbapp:
image: kollaglue/centos-rdo-mariadb-app:latest
name: mariadbapp
restart: always
env_file:
- openstack.env
volumes_from:
- mariadbdata
net: "host"