github.com/amrnt/deis@v1.3.1/tests/fixtures/mock-store/README.md (about) 1 # Mock S3 storage 2 3 The objective is to provide an S3-compatible service for tests, so a Ceph cluster 4 is not required. This component uses [mock-s3](https://github.com/jserver/mock-s3). 5 6 ## Usage: 7 8 ``` 9 docker run -p 8888:8888 -e HOST=$COREOS_PRIVATE_IPV4 -v <local directory>:/app/storage deis/mock-store 10 ``` 11 12 *The use of a local directory `(-v <local directory>)` is optional* 13 14 15 `mock-s3` does not requires an `ACCESS_KEY` and `SECRET_KEY` (there is no concept of permissions), but this 16 component will generate both to keep compatibility with `deis-store-gateway`. 17 18 ## Containers 19 20 The mock store component is composed of one container: 21 22 * [mock-store](https://index.docker.io/u/deis/mock-store/) - the blob store gateway, 23 offering a S3-compatible bucket APIs using the local filesystem as storage. 24 25 ## Usage 26 27 Please consult the [Makefile](Makefile) for current instructions on how to build, test, push, 28 install, and start **deis/mock-store**. 29 30 ## License 31 32 © 2015 OpDemand LLC 33 34 Licensed under the Apache License, Version 2.0 (the "License"); you may 35 not use this file except in compliance with the License. You may obtain 36 a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> 37 38 Unless required by applicable law or agreed to in writing, software 39 distributed under the License is distributed on an "AS IS" BASIS, 40 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 41 See the License for the specific language governing permissions and 42 limitations under the License.