kolla-ansible/compose/swift-storage.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

74 lines
1.5 KiB
YAML

swiftdata:
image: kollaglue/centos-rdo-data:latest
name: swiftdata
swiftobjectserver:
image: kollaglue/centos-rdo-swift-object-server:latest
name: swiftobjectserver
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftobjectauditor:
image: kollaglue/centos-rdo-swift-object-auditor:latest
name: swiftobjectauditor
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftobjectexpirer:
image: kollaglue/centos-rdo-swift-object-expirer:latest
name: swiftobjectexpirer
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftobjectreplicator:
image: kollaglue/centos-rdo-swift-object-replicator:latest
name: swiftobjectreplicator
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftobjectupdater:
image: kollaglue/centos-rdo-swift-object-updater:latest
name: swiftobjectupdater
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftcontainerserver:
image: kollaglue/centos-rdo-swift-container-server:latest
name: swiftcontainerserver
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata
swiftaccountserver:
image: kollaglue/centos-rdo-swift-account-server:latest
name: swiftaccountserver
restart: always
net: host
env_file:
- openstack.env
volumes_from:
- swiftdata