Skip to content

Instantly share code, notes, and snippets.

@rsbohn
Forked from anonymous/Dockerfile
Last active August 29, 2015 14:06
Show Gist options
  • Save rsbohn/966d869b6f59eee7b67a to your computer and use it in GitHub Desktop.
Save rsbohn/966d869b6f59eee7b67a to your computer and use it in GitHub Desktop.
A docker container for remotestorage.
# container for remotestorage "telepothekis"
# docker build -t remotestorage:latest
# docker run -d --link proxy_container:proxy remotestorage:latest
FROM dockerfile/nodejs
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y git
RUN git clone https://github.com/remotestorage/starter-kit.git /opt/remotestorage
WORKDIR /opt/remotestorage
RUN npm install
EXPOSE 8000 8001
CMD ["node", "/opt/remotestorage/starter-kit"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment