forked from project-stacker/project-stacker.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
111 lines (110 loc) · 3.15 KB
/
mkdocs.yml
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
site_name: Stacker Build
site_url: https://stackerbuild.io
site_description: Stacker Build
repo_url: https://github.com/project-stacker/stacker
repo_name: project-stacker/stacker
edit_uri: ""
copyright: Copyright © 2017 - 2022 Cisco Systems Inc., All Rights Reserved.
theme:
name: material
custom_dir: material
palette:
scheme: slate
primary: black
accent: teal
favicon: assets/images/favicon.png
logo: assets/images/logo.png
features:
- content.code.annotate
- content.tooltips
- navigation.instant
- navigation.tracking
- navigation.top
- navigation.indexes
- search.suggest
- search.highlight
- search.share
- toc.follow
icon:
repo: fontawesome/brands/github
font:
text: Roboto
code: Roboto Mono
extra:
homepage: https://stackerbuild.io
social:
- icon: fontawesome/brands/github
link: https://github.com/project-stacker/stacker.git
- icon: fontawesome/brands/twitter
link: https://twitter.com/stackerbuild
- icon: fontawesome/brands/slack
link: https://cloud-native.slack.com/archives/C048S8TMBGQ
plugins:
- search
- minify:
minify_html: true
markdown_extensions:
- abbr
- admonition
- attr_list
- def_list
- footnotes
- md_in_html
- tables
- toc:
permalink: true
- pymdownx.superfences
- pymdownx.arithmatex:
generic: true
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.details
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.keys
- pymdownx.magiclink:
repo_url_shorthand: true
user: squidfunk
repo: mkdocs-material
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.tabbed:
alternate_style: true
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde
nav:
- Home: index.md
- Get Started:
- Get Stacker: get_started/get_stacker.md
- Hello Stacker Image: get_started/hello_stacker_image.md
- Concepts:
- OCI Image Layout: concepts/oci_image_layout.md
- Stacker Architecture: concepts/stacker_architecture.md
- User Guide:
- Build Environment: user_guide/build_environment.md
- Build Code: user_guide/build_code.md
- Build Container Image: user_guide/build_container_image.md
- Scratch Image: user_guide/scratch_image.md
- Template Substitution: user_guide/template_substitution.md
- Annotation Support: user_guide/annotation_support.md
- Dependency Builds: user_guide/dependency_builds.md
- Publish Images: user_guide/publish_images.md
- Build Cache: user_guide/build_cache.md
- Inspect Images: user_guide/inspect_images.md
- Image Chroot: user_guide/image_chroot.md
- Grab Image Content: user_guide/grab_image_content.md
- Debugging: user_guide/debugging.md
- Reference:
- Stacker CLI: reference/stacker_cli.md
- Stacker File: reference/stacker_file.md
- Developer Guide:
- Building Stacker: developer_guide/building_stacker.md
- Code Structure: developer_guide/code_structure.md
- LXC Usage: developer_guide/lxc_usage.md
- OverlayFS Usage: developer_guide/overlayfs_usage.md
- License: license.md
extra_css:
- stylesheets/custom.css