forked from testcontainers/testcontainers-go
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yml
62 lines (62 loc) · 1.79 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
site_name: Testcontainers-Go
plugins:
- search
- codeinclude
- markdownextradata
theme:
name: 'material'
palette:
scheme: testcontainers
font:
text: Roboto
code: Roboto Mono
logo: 'logo.svg'
favicon: 'favicon.ico'
extra_css:
- 'css/extra.css'
repo_name: 'testcontainers-go'
repo_url: 'https://github.com/testcontainers/testcontainers-go'
markdown_extensions:
- admonition
- codehilite:
linenums: False
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- pymdownx.snippets
nav:
- Home: index.md
- Quickstart:
- quickstart/gotest.md
- Features:
- features/creating_container.md
- features/garbage_collector.md
- features/build_from_dockerfile.md
- features/docker_compose.md
- features/follow_logs.md
- features/override_container_command.md
- features/copy_file.md
- Wait Strategies:
- Introduction: features/wait/introduction.md
- Exec: features/wait/exec.md
- Exit: features/wait/exit.md
- Health: features/wait/health.md
- HostPort: features/wait/host_port.md
- HTTP: features/wait/http.md
- Log: features/wait/log.md
- Multi: features/wait/multi.md
- SQL: features/wait/sql.md
- Examples:
- examples/cockroachdb.md
- examples/nginx.md
- examples/redis.md
- System Requirements:
- system_requirements/index.md
- system_requirements/using_colima.md
- system_requirements/using_podman.md
- Contributing:
- contributing.md
- contributing_docs.md
- Getting help: getting_help.md
extra:
latest_version: 0.14.0