File size: 1,995 Bytes
77a4068 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
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-2022 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
# Customization
extra:
social:
- type: github-alt
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:
- 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
|