-
-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy pathmkdocs.yml
84 lines (84 loc) · 2.38 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
site_name: Testcontainers for Go
plugins:
- search
- codeinclude
- markdownextradata
theme:
name: material
custom_dir: docs/theme
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.md
- Features:
- features/creating_container.md
- features/configuration.md
- features/networking.md
- features/garbage_collector.md
- features/build_from_dockerfile.md
- features/docker_auth.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
- Modules:
- modules/index.md
- modules/couchbase.md
- modules/localstack.md
- modules/mysql.md
- modules/postgres.md
- modules/neo4j.md
- modules/pulsar.md
- modules/vault.md
- Examples:
- examples/index.md
- examples/bigtable.md
- examples/cockroachdb.md
- examples/consul.md
- examples/datastore.md
- examples/firestore.md
- examples/mongodb.md
- examples/nginx.md
- examples/pubsub.md
- examples/redis.md
- examples/spanner.md
- examples/toxiproxy.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
edit_uri: edit/main/docs/
extra:
latest_version: v0.19.0