Docker image with latest version of S3 fake service ( https://github.com/jamhall/s3rver ).
You can set extra the S3RVER_EXTRA_ARGS
environment variable to set extra arguments.
For example, if you want to use the S3 path-style address, set S3RVER_EXTRA_ARGS=--no-vhost-buckets
Set the bucket name environment variable in your Vagrantfile.
config.vm.define "s3" do |s3|
s3.vm.provider "docker" do |d|
d.image = "jean553/docker-s3-server-dev"
d.env = {
"S3_BUCKET_NAME" => "MyBucketName",
}
end
end