Day 39 - Fake S3
Some of you may be using AWS S3 as a distributed storage. Did you know you can setup a local server with exactly the same API, for dev or continuous integration ?
It’s called Fake S3.
https://github.com/jubos/fake-s3
$ docker run -v ./data:/var/data/fakes3 -p 3128:3128 leogamas/fakes3
[2017-05-17 12:30:22] INFO WEBrick 1.3.1
[2017-05-17 12:30:22] INFO ruby 1.9.3 (2013-11-22) [x86_64-linux]
[2017-05-17 12:30:22] INFO WEBrick::HTTPServer#start: pid=1 port=3128
by ops for non-ops