mirror of https://github.com/docker/docs.git
/getting-started/ is a WIP at the moment
This commit is contained in:
parent
27d8cd8193
commit
d3141e1381
|
@ -10,6 +10,7 @@ incremental: true
|
|||
permalink: pretty
|
||||
safe: false
|
||||
lsi: false
|
||||
exclude: [vendor, bin]
|
||||
|
||||
gems:
|
||||
- jekyll-redirect-from
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
FROM starefossen/ruby-node:2-5
|
||||
|
||||
RUN gem install github-pages
|
||||
FROM starefossen/ruby-node
|
||||
|
||||
RUN mkdir -p /docs
|
||||
VOLUME /docs
|
||||
|
||||
EXPOSE 4000
|
||||
|
||||
WORKDIR /docs
|
||||
|
||||
CMD bundle && jekyll clean && jekyll serve -H 0.0.0.0 -P 4000
|
||||
RUN gem install github-pages
|
||||
|
||||
CMD jekyll clean && jekyll serve -H 0.0.0.0 -P 4000
|
||||
|
||||
# To run:
|
||||
#
|
|
@ -1,18 +1,6 @@
|
|||
toc:
|
||||
- title: What is the Docker Platform?
|
||||
- title: Welcome to the Docs
|
||||
path: /
|
||||
- sectiontitle: Getting Started with Docker
|
||||
section:
|
||||
- path: /getting-started/
|
||||
title: "Part 1: Orientation and Setup"
|
||||
- path: /getting-started/part2/
|
||||
title: "Part 2: Creating and Building Your App"
|
||||
- path: /getting-started/part3/
|
||||
title: "Part 3: Stateful, Multi-container Applications"
|
||||
- path: /getting-started/part4/
|
||||
title: Part 4
|
||||
- path: /getting-started/part5/
|
||||
title: Part 5
|
||||
- sectiontitle: Docker Engine
|
||||
section:
|
||||
- sectiontitle: Install
|
||||
|
|
Loading…
Reference in New Issue