2020-02-06 03:04:43 +00:00
|
|
|
site_name: Getting Started
|
|
|
|
site_description: Getting Started with Docker
|
|
|
|
site_author: Docker
|
|
|
|
# site_url: https://squidfunk.github.io/mkdocs-material/
|
|
|
|
|
|
|
|
# Repository
|
|
|
|
repo_name: docker/getting-started
|
|
|
|
repo_url: https://github.com/docker/getting-started
|
|
|
|
edit_uri: ""
|
|
|
|
|
|
|
|
# Copyright
|
|
|
|
copyright: 'Copyright © 2020 Docker'
|
|
|
|
|
|
|
|
# Configuration
|
|
|
|
theme:
|
|
|
|
name: material
|
|
|
|
language: en
|
|
|
|
palette:
|
|
|
|
primary: blue
|
|
|
|
accent: blue
|
|
|
|
font:
|
|
|
|
text: Roboto
|
|
|
|
code: Roboto Mono
|
|
|
|
favicon: assets/images/favicon.png
|
|
|
|
logo: 'images/docker-labs-logo.svg'
|
|
|
|
|
|
|
|
extra_css:
|
|
|
|
- css/styles.css
|
|
|
|
- css/dark-mode.css
|
|
|
|
|
|
|
|
# Plugins
|
|
|
|
plugins:
|
|
|
|
- search
|
|
|
|
- minify:
|
|
|
|
minify_html: true
|
2021-05-31 02:38:41 +00:00
|
|
|
- redirects:
|
|
|
|
redirect_maps:
|
|
|
|
'index.md': 'tutorial/index.md'
|
|
|
|
- i18n:
|
|
|
|
languages:
|
|
|
|
es: "Español"
|
|
|
|
en: "English"
|
|
|
|
default_language: 'en'
|
|
|
|
translate_nav:
|
2020-02-06 03:04:43 +00:00
|
|
|
|
|
|
|
# Customization
|
|
|
|
extra:
|
|
|
|
social:
|
2021-05-31 02:38:41 +00:00
|
|
|
- icon: fontawesome/brands/github-alt
|
2020-02-06 03:04:43 +00:00
|
|
|
link: https://github.com/docker/getting-started
|
|
|
|
|
|
|
|
# Extensions
|
|
|
|
markdown_extensions:
|
|
|
|
- meta
|
|
|
|
- markdown.extensions.admonition
|
|
|
|
- markdown.extensions.codehilite:
|
|
|
|
guess_lang: false
|
|
|
|
- markdown.extensions.footnotes
|
|
|
|
- markdown.extensions.toc:
|
|
|
|
permalink: true
|
|
|
|
- pymdownx.betterem:
|
|
|
|
smart_enable: all
|
|
|
|
- pymdownx.caret
|
|
|
|
- pymdownx.critic
|
|
|
|
- pymdownx.details
|
|
|
|
- pymdownx.inlinehilite
|
|
|
|
- pymdownx.magiclink:
|
|
|
|
repo_url_shorthand: true
|
|
|
|
user: dockersamples
|
|
|
|
repo: 101-tutorial
|
|
|
|
- pymdownx.mark
|
|
|
|
- pymdownx.smartsymbols
|
|
|
|
- pymdownx.superfences
|
|
|
|
- pymdownx.tasklist:
|
|
|
|
custom_checkbox: true
|
|
|
|
- pymdownx.tilde
|
|
|
|
- attr_list
|
|
|
|
|
|
|
|
# Page tree
|
|
|
|
nav:
|
2021-05-31 02:38:41 +00:00
|
|
|
# English
|
2020-02-06 03:04:43 +00:00
|
|
|
- Getting Started: tutorial/index.md
|
|
|
|
- Our Application: tutorial/our-application/index.md
|
|
|
|
- Updating our App: tutorial/updating-our-app/index.md
|
|
|
|
- Sharing our App: tutorial/sharing-our-app/index.md
|
|
|
|
- Persisting our DB: tutorial/persisting-our-data/index.md
|
|
|
|
- Using Bind Mounts: tutorial/using-bind-mounts/index.md
|
|
|
|
- Multi-Container Apps: tutorial/multi-container-apps/index.md
|
|
|
|
- Using Docker Compose: tutorial/using-docker-compose/index.md
|
|
|
|
- Image Building Best Practices: tutorial/image-building-best-practices/index.md
|
|
|
|
- What Next?: tutorial/what-next/index.md
|
2021-05-31 02:38:41 +00:00
|
|
|
# Spanish
|
|
|
|
- Empezando: tutorial/index.es.md
|
|
|
|
- Nuestra Aplicación: tutorial/our-application/index.es.md
|
|
|
|
- Actualizando nuestra Aplicación: tutorial/updating-our-app/index.es.md
|
|
|
|
- Compartiendo nuestra Aplicación: tutorial/sharing-our-app/index.es.md
|
|
|
|
- Persistiendo nuestra DB: tutorial/persisting-our-data/index.es.md
|
|
|
|
- Uso de Bind Mounts: tutorial/using-bind-mounts/index.es.md
|
|
|
|
- Aplicaciones Multi-Container: tutorial/multi-container-apps/index.es.md
|
|
|
|
- Uso de Docker Compose: tutorial/using-docker-compose/index.es.md
|
|
|
|
- Mejores Prácticas para Creación de Imágen: tutorial/image-building-best-practices/index.es.md
|
|
|
|
- ¿Qué sigue?: tutorial/what-next/index.es.md
|