-
Notifications
You must be signed in to change notification settings - Fork 1
/
mkdocs.yml
42 lines (40 loc) · 1.3 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
site_name: Docker Tutorial - Part 2
repo_url: https://github.com/spigad/docker-tutorial
site_author: Daniele Spiga - [email protected]
theme:
name: material
palette:
primary: teal
accent: green
logo: assets/logo_infn.png
features:
- navigation.sections
- navigation.expand
- navigation.top
- toc.integrate
markdown_extensions:
- toc:
permalink: true
- pymdownx.highlight
- pymdownx.superfences
- pymdownx.snippets
- pymdownx.tabbed
- admonition
- pymdownx.details
- attr_list
nav:
- Introduction:
- Building images interactively: 'intro/index.md'
- Dockerfiles:
- Overview of basic instructions : 'dockerfile/instructions.md'
- Write the first Dockerfile: 'dockerfile/first-dockerfile.md'
- The CMD and ENTRYPOINT verbs: 'dockerfile/cmd-entrypoint.md'
- Copying files during the build: 'dockerfile/copy.md'
- Exercise: 'dockerfile/exercise.md'
- Cache and dangling images:
- ... or what are those nasty <none> tags: 'cacheimaegs/cache-dangling.md'
- Docker Registry:
- Publishing images to the Docker hub: 'registry/dockerhub.md'
- multi-stage example:
- Our first multi-stage Dockerfile: 'multistage/multistage-example.md'
Credits: the material had many contributors among which Jérôme Petazzoni; 2021 INFN