mirror of
https://github.com/docker/docs.git
synced 2026-03-31 08:18:55 +07:00
18 lines
318 B
Docker
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
|