github.com/naphatkrit/deis@v1.12.3/store/README.md (about) 1 # Deis Store 2 3 A backing store built on [Ceph](http://ceph.com) for use in the [Deis](http://deis.io) open 4 source PaaS. 5 6 The bin/boot scripts and Dockerfiles were inspired by 7 Seán C. McCord's [docker-ceph](https://github.com/Ulexus/docker-ceph) repository. 8 9 This Docker image is based on the official 10 [alpine:3.2](https://registry.hub.docker.com/_/alpine/) image. 11 12 Please add any issues you find with this software to the 13 [Deis project](https://github.com/deis/deis/issues). 14 15 ## Containers 16 17 The store component is comprised of four containers: 18 19 * [store-daemon](https://index.docker.io/u/deis/store-daemon/) - the daemon which serves data 20 (in Ceph, this is an object store daemon, or OSD) 21 * [store-gateway](https://index.docker.io/u/deis/store-gateway/) - the blob store gateway, 22 offering Swift and S3-compatible bucket APIs 23 * [store-metadata](https://index.docker.io/u/deis/store-metadata/) - the metadata service necessary 24 to use the CephFS shared filesystem (in Ceph, this is a metadata server daemon, or MDS) 25 * [store-monitor](https://index.docker.io/u/deis/store-monitor/) - the service responsible for 26 keeping track of the cluster state (this is also called a monitor in Ceph) 27 28 These are all based upon the [store-base](https://github.com/deis/deis/tree/master/store/base) image, 29 which is a Docker container that preinstalls Ceph. 30 31 ## Usage 32 33 Please consult the [Makefile](Makefile) for current instructions on how to build, test, push, 34 install, and start **deis/store**. 35 36 ## License 37 38 © 2014 Engine Yard, Inc. 39 40 Licensed under the Apache License, Version 2.0 (the "License"); you may 41 not use this file except in compliance with the License. You may obtain 42 a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> 43 44 Unless required by applicable law or agreed to in writing, software 45 distributed under the License is distributed on an "AS IS" BASIS, 46 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 47 See the License for the specific language governing permissions and 48 limitations under the License.