Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 582 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 582 Bytes

dev-s3-server

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

Usage with Vagrant

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