Skip to content

Instantly share code, notes, and snippets.

@amessinger
Last active March 23, 2017 09:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amessinger/8673b6bb89ccfdfd4bd029de282268a4 to your computer and use it in GitHub Desktop.
Save amessinger/8673b6bb89ccfdfd4bd029de282268a4 to your computer and use it in GitHub Desktop.
Fake S3 Docker Container
# https://github.com/jubos/fake-s3
FROM alpine
EXPOSE 80
RUN apk update
RUN apk add ruby ruby-rdoc ruby-irb ruby-io-console
RUN gem install fakes3
RUN mkdir -p /var/fakes3
CMD fakes3 --root=/var/fakes3 --port=80
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment