Last active
March 23, 2017 09:11
-
-
Save amessinger/8673b6bb89ccfdfd4bd029de282268a4 to your computer and use it in GitHub Desktop.
Fake S3 Docker Container
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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