-
-
Save rsbohn/966d869b6f59eee7b67a to your computer and use it in GitHub Desktop.
A docker container for remotestorage.
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
# 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