Files
docker-docs/_data/docsarchive/Dockerfile
2016-09-29 23:38:12 -07:00

18 lines
318 B
Docker

FROM starefossen/ruby-node:2-5
RUN gem install github-pages
VOLUME /docs
EXPOSE 4000
WORKDIR /docs
CMD bundle && jekyll clean && jekyll serve -H 0.0.0.0 -P 4000
# To run:
#
# git clone https://github.com/docker/docker.github.io.git docs
# cd docs
# docker run -ti --rm -v "$PWD":/docs -p 4000:4000 docs/docstage