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
|
permalink: pretty
|
||||||
safe: false
|
safe: false
|
||||||
lsi: false
|
lsi: false
|
||||||
|
exclude: [vendor, bin]
|
||||||
|
|
||||||
gems:
|
gems:
|
||||||
- jekyll-redirect-from
|
- jekyll-redirect-from
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
FROM starefossen/ruby-node:2-5
|
FROM starefossen/ruby-node
|
||||||
|
|
||||||
RUN gem install github-pages
|
|
||||||
|
|
||||||
|
RUN mkdir -p /docs
|
||||||
VOLUME /docs
|
VOLUME /docs
|
||||||
|
|
||||||
EXPOSE 4000
|
EXPOSE 4000
|
||||||
|
|
||||||
WORKDIR /docs
|
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:
|
# To run:
|
||||||
#
|
#
|
|
@ -1,18 +1,6 @@
|
||||||
toc:
|
toc:
|
||||||
- title: What is the Docker Platform?
|
- title: Welcome to the Docs
|
||||||
path: /
|
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
|
- sectiontitle: Docker Engine
|
||||||
section:
|
section:
|
||||||
- sectiontitle: Install
|
- sectiontitle: Install
|
||||||
|
|
2
index.md
2
index.md
|
@ -10,8 +10,6 @@ layout: docs
|
||||||
|
|
||||||
{% include content/docker_elevator_pitch.md %}
|
{% include content/docker_elevator_pitch.md %}
|
||||||
|
|
||||||
<a href="getting-started/index.md" class="button darkblue-btn">Learn the Docker Platform</a>
|
|
||||||
|
|
||||||
{% include content/typical_docker_workflow.md %}
|
{% include content/typical_docker_workflow.md %}
|
||||||
|
|
||||||
## Components
|
## Components
|
||||||
|
|
Loading…
Reference in New Issue