this is a docker image of jamhall/s3rver
you can run a container like below.
docker run -d -p 4567:4567 triplew/s3rver
# create a sample file
echo 'hello' >> hello.txt
# create a bucket
curl -XPUT localhost:4567/hoge
# upload the file to the bucket
curl -XPUT -T hello.txt localhost:4567/hoge/
# download the file from the bucket
curl -XGET localhost:4567/hoge/hello.txt