Dockerfiles for staging/archives

This commit is contained in:
John Mulhausen 2016-10-11 02:10:12 -07:00
parent 6db7389e57
commit cbeb53dd83
6 changed files with 50 additions and 2 deletions

View File

@ -9,4 +9,4 @@ ONBUILD RUN git checkout vnext-compose
ONBUILD COPY . /usr/src/app ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000 CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000

View File

@ -0,0 +1,12 @@
FROM starefossen/github-pages:onbuild
ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs
ONBUILD WORKDIR docs
ONBUILD RUN git checkout vnext-distribution
ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000

View File

@ -0,0 +1,12 @@
FROM starefossen/github-pages:onbuild
ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs
ONBUILD WORKDIR docs
ONBUILD RUN git checkout vnext-engine
ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000

View File

@ -0,0 +1,12 @@
FROM starefossen/github-pages:onbuild
ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs
ONBUILD WORKDIR docs
ONBUILD RUN git checkout vnext-kitematic
ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000

View File

@ -9,4 +9,4 @@ ONBUILD RUN git checkout vnext-machine
ONBUILD COPY . /usr/src/app ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site --watch -H 0.0.0.0 -P 4000 CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000

View File

@ -0,0 +1,12 @@
FROM starefossen/github-pages:onbuild
ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs
ONBUILD WORKDIR docs
ONBUILD RUN git checkout vnext-toolbox
ONBUILD COPY . /usr/src/app
CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000