Skip to content

Commit

Permalink
Merge pull request #5 from jean553/add_note_in_readme_about_vagrant_i…
Browse files Browse the repository at this point in the history
…ntegration

Add note about Vagrant usage into Readme file
  • Loading branch information
jean553 authored Feb 12, 2017
2 parents d54c3c0 + 4acc3ff commit 5eb5aff
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# dev-s3-server

Docker image with latest version of S3 fake service ( https://github.com/jamhall/s3rver ).

## Usage with Vagrant

Set the bucket name environment variable in your Vagrantfile.

```ruby
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
```

0 comments on commit 5eb5aff

Please sign in to comment.