mkdocs.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. site_name: Getting Started
  2. site_description: Getting Started with Docker
  3. site_author: Docker
  4. # site_url: https://squidfunk.github.io/mkdocs-material/
  5. # Repository
  6. repo_name: docker/getting-started
  7. repo_url: https://github.com/docker/getting-started
  8. edit_uri: ""
  9. # Copyright
  10. copyright: 'Copyright © 2020-2022 Docker'
  11. # Configuration
  12. theme:
  13. name: material
  14. language: en
  15. palette:
  16. primary: blue
  17. accent: blue
  18. font:
  19. text: Roboto
  20. code: Roboto Mono
  21. favicon: assets/images/favicon.png
  22. logo: 'images/docker-labs-logo.svg'
  23. extra_css:
  24. - css/styles.css
  25. - css/dark-mode.css
  26. # Plugins
  27. plugins:
  28. - search
  29. - minify:
  30. minify_html: true
  31. # Customization
  32. extra:
  33. social:
  34. - type: github-alt
  35. link: https://github.com/docker/getting-started
  36. # Extensions
  37. markdown_extensions:
  38. - meta
  39. - markdown.extensions.admonition
  40. - markdown.extensions.codehilite:
  41. guess_lang: false
  42. - markdown.extensions.footnotes
  43. - markdown.extensions.toc:
  44. permalink: true
  45. - pymdownx.betterem:
  46. smart_enable: all
  47. - pymdownx.caret
  48. - pymdownx.critic
  49. - pymdownx.details
  50. - pymdownx.inlinehilite
  51. - pymdownx.magiclink:
  52. repo_url_shorthand: true
  53. user: dockersamples
  54. repo: 101-tutorial
  55. - pymdownx.mark
  56. - pymdownx.smartsymbols
  57. - pymdownx.superfences
  58. - pymdownx.tasklist:
  59. custom_checkbox: true
  60. - pymdownx.tilde
  61. - attr_list
  62. # Page tree
  63. nav:
  64. - Getting Started: tutorial/index.md
  65. - Our Application: tutorial/our-application/index.md
  66. - Updating our App: tutorial/updating-our-app/index.md
  67. - Sharing our App: tutorial/sharing-our-app/index.md
  68. - Persisting our DB: tutorial/persisting-our-data/index.md
  69. - Using Bind Mounts: tutorial/using-bind-mounts/index.md
  70. - Multi-Container Apps: tutorial/multi-container-apps/index.md
  71. - Using Docker Compose: tutorial/using-docker-compose/index.md
  72. - Image Building Best Practices: tutorial/image-building-best-practices/index.md
  73. - What Next?: tutorial/what-next/index.md