Skip to content

A simple S3 server instance for development environments in Docker.

License

Notifications You must be signed in to change notification settings

jean553/docker-s3-server-dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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