Skip to content

Commit 269ffe6

Browse files
committed
Add missing renames
1 parent 704d733 commit 269ffe6

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

docs/introduction/what_is_dockform.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: What is Dockform?
55
# What is Dockform?
66

77
Dockform extends Docker Compose with a fully declarative workflow.
8-
It lets you manage not only your Compose applications, but also the supporting resources that normally sit outside of `docker-compose.yml` — such as external networks, volume lifecycles, secrets, and configuration files.
8+
It lets you manage not only your Compose stacks, but also the supporting resources that normally sit outside of `docker-compose.yml` — such as external networks, volume lifecycles, secrets, and configuration files.
99

1010
Think of Dockform as the missing declarative layer for everything you’d otherwise configure manually with commands like `docker network create`, `docker volume create`, or ad-hoc shell scripts. All of it is written as code, stored in a manifest, and applied consistently.
1111

docs/more/best_practices.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ filesets:
4343
- "**/.DS_Store"
4444
```
4545
46-
## Applications and Compose
46+
## Stacks and Compose
4747
4848
- Set a stable `project.name` for predictable container and network names. See https://docs.docker.com/compose/how-tos/project-name/
4949
- Keep Compose files close to each app’s `root` folder; avoid cross-tree paths.
@@ -86,7 +86,7 @@ Always ensure you have recent backups for stateful volumes before destructive co
8686

8787
## Suggested project structure
8888

89-
- Dockform is unopinionated, but grouping applications by folder is effective.
89+
- Dockform is unopinionated, but grouping stacks by folder is effective.
9090

9191
```text
9292
repo/

docs/more/debugging.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Dockform provides several diagnostic commands to help you understand what's happ
1818
|---------|---------|-------------|
1919
| `dockform doctor` | Environment health check | Setup validation, troubleshooting failures |
2020
| `dockform manifest render` | Inspect processed manifest | Debug environment interpolation, validate structure |
21-
| `dockform compose render` | View resolved Compose config | Debug application-specific issues, inspect final output |
21+
| `dockform compose render` | View resolved Compose config | Debug stack-specific issues, inspect final output |
2222
| `--log-file` or `--verbose` | View full execution logs | Debug runtime issues |
2323

2424
## Validation with `doctor`
@@ -103,10 +103,10 @@ $ dockform manifest render | grep identifier
103103

104104
### Compose rendering
105105

106-
Render the fully-resolved Docker Compose configuration for a specific application as defined in your Dockform manifest. This command:
106+
Render the fully-resolved Docker Compose configuration for a specific stack as defined in your Dockform manifest. This command:
107107

108108
- **Loads manifest config** (project, profiles, env files, inline env, SOPS).
109-
- **Resolves application root** and all referenced compose files.
109+
- **Resolves stack root** and all referenced compose files.
110110
- **Merges multiple compose files** and normalizes to a single YAML.
111111
- **Interpolates compose-style variables**: `${VAR}`, `${VAR:-default}`, `${VAR:?err}`.
112112
- **Respects profiles/extends/anchors** via docker compose config.
@@ -115,7 +115,7 @@ Render the fully-resolved Docker Compose configuration for a specific applicatio
115115
Usage:
116116

117117
```bash [shell ~vscode-icons:file-type-shell~]
118-
# Render an app by name (from your manifest’s applications map)
118+
# Render an app by name (from your manifest’s stacks map)
119119
$ dockform compose render myapp
120120
121121
# Optional flags
@@ -173,7 +173,7 @@ Both `manifest render` and `compose render` commands share common behavior patte
173173
$ dockform compose render api > debug-compose.yml
174174
175175
# Process with jq (if converted to JSON)
176-
$ dockform manifest render | yq eval -o=json | jq '.applications'
176+
$ dockform manifest render | yq eval -o=json | jq '.stacks'
177177
```
178178

179179
## Logging and verbose output
@@ -273,7 +273,7 @@ For troubleshooting docker compose config errors independently:
273273

274274
1. **Start with environment validation**: `dockform doctor` to ensure all dependencies are properly configured
275275
2. **Check manifest processing**: `dockform manifest render` to verify environment interpolation
276-
3. **Inspect application config**: `dockform compose render <app>` to see the final configuration
276+
3. **Inspect stack config**: `dockform compose render <app>` to see the final configuration
277277
4. **Test deployment**: `dockform plan` to preview changes before applying
278278

279279
This systematic approach helps identify issues at each layer of Dockform's processing pipeline.

docs/more/snapshots_and_restore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ dockform volume restore myapp_data snapshot.tar.zst --stop-containers
173173

174174
2. **Staged approach**: For production restores, consider:
175175
```bash
176-
# 1. Stop application containers
176+
# 1. Stop stack containers
177177
docker compose stop app
178178

179179
# 2. Restore data volume

0 commit comments

Comments
 (0)