Skip to content
/ s3mock Public
forked from MeteoGroup/s3mock

Docker image providing a S3 mock based on "S3 ninja" (https://s3ninja.net/).

License

Notifications You must be signed in to change notification settings

rasodu/s3mock

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

S3 mock build status

Docker image providing a S3 mock based on S3 ninja:

S3 ninja emulates the S3 API for development and testing purposes.

test contains a java test suite showing the use of S3 mock together with Amazon's AWS SDK for Java.

To build the image run ./build.sh

To start the S3 mock in a docker container run ./run.sh.

By default S3 ninja is bound to port 9444. To select another port set the S3NINJA_PORT environment variable, e.g.:

S3NINJA_PORT=9444 ./run.sh

To run the tests run mvn -f test test from the repository root. Per default tests try to connect to https://localhost:9444/s3. This can be changed be setting the s3mock system property, e.g.:

mvn -f test test -Ds3mock=https://192.168.99.100:9444/s3

To connect to the S3 mock you should use the following credentials:

apiKey: "AKIAIOSFODNN7EXAMPLE"
secretKey: "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"

Please make sure to configure the credentials and endpoint in you S3 client and enable path-style access. For the AWS SDK for Java this can be done by

client = new AmazonS3Client(new BasicAWSCredentials(
    "AKIAIOSFODNN7EXAMPLE", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"));
client.setEndpoint("https://<s3mock ip>:<s3mock port>");
client.setS3ClientOptions(new S3ClientOptions().withPathStyleAccess(true));

Copyright & Licences

S3 ninja (https://s3ninja.net) © 2015 scireum GmbH, licensed under the MIT License.

AWS SDK for Java (https://aws.amazon.com/sdk-for-java/) © 2010-2014 Amazon.com, Inc., licensed under the Apache License 2.0.

All files in this repository are released under the terms of the MIT License:

Copyright © 2016 MeteoGroup Deutschland GmbH

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Docker image providing a S3 mock based on "S3 ninja" (https://s3ninja.net/).

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 76.6%
  • Shell 23.4%