Skip to content

Commit 4cd6195

Browse files
committed
fix build
Signed-off-by: aevesdocker <[email protected]>
1 parent 0d4cbbd commit 4cd6195

33 files changed

+85
-86
lines changed

docs/reference/compose_alpha_publish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose alpha publish
22

33
<!---MARKER_GEN_START-->
4-
Publish a Compose application.
4+
Publish compose application
55

66
### Options
77

docs/reference/compose_alpha_viz.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose alpha viz
22

33
<!---MARKER_GEN_START-->
4-
Generate a Graphviz graph from your compose file
4+
EXPERIMENTAL - Generate a graphviz graph from your compose file
55

66
### Options
77

@@ -12,7 +12,7 @@ Generate a Graphviz graph from your compose file
1212
| `--indentation-size` | `int` | `1` | Number of tabs or spaces to use for indentation |
1313
| `--networks` | | | Include service's attached networks in output graph |
1414
| `--ports` | | | Include service's exposed ports in output graph |
15-
| `--spaces` | | | If given, space character ' ' is used to indent,<br>otherwise tab character '\t' is used |
15+
| `--spaces` | | | If given, space character ' ' will be used to indent,<br>otherwise tab character '\t' will be used |
1616

1717

1818
<!---MARKER_GEN_END-->

docs/reference/compose_build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose build
22

33
<!---MARKER_GEN_START-->
4-
Build or rebuild services.
4+
Build or rebuild services
55

66
### Options
77

docs/reference/compose_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose convert
22

33
<!---MARKER_GEN_START-->
4-
Parse, resolve and render Compose files in canonical format.
4+
Parse, resolve and render compose file in canonical format
55

66
### Aliases
77

docs/reference/compose_cp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose cp
22

33
<!---MARKER_GEN_START-->
4-
Copy files or folders between a service container and the local filesystem.
4+
Copy files/folders between a service container and the local filesystem
55

66
### Options
77

docs/reference/compose_create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Creates containers for a service.
1010
| `--build` | | | Build images before starting containers. |
1111
| `--dry-run` | | | Execute command in dry run mode |
1212
| `--force-recreate` | | | Recreate containers even if their configuration and image haven't changed. |
13-
| `--no-build` | | | Don't build an image, even if it's policy |
13+
| `--no-build` | | | Don't build an image, even if it's policy. |
1414
| `--no-recreate` | | | If containers already exist, don't recreate them. Incompatible with --force-recreate. |
1515
| `--pull` | `string` | `policy` | Pull image before running ("always"\|"policy"\|"never") |
16-
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file |
16+
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file. |
1717
| `--scale` | `stringArray` | | Scale SERVICE to NUM instances. Overrides the `scale` setting in the Compose file if present. |
1818

1919

docs/reference/compose_down.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# docker compose down
22

33
<!---MARKER_GEN_START-->
4-
Stop and remove containers, networks, volumes, and images.
4+
Stop and remove containers, networks
55

66
### Options
77

88
| Name | Type | Default | Description |
99
|:-------------------|:---------|:--------|:-------------------------------------------------------------------------------------------------------------------------|
1010
| `--dry-run` | | | Execute command in dry run mode |
11-
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file |
11+
| `--remove-orphans` | | | Remove containers for services not defined in the Compose file. |
1212
| `--rmi` | `string` | | Remove images used by services. "local" remove only images that don't have a custom tag ("local"\|"all") |
1313
| `-t`, `--timeout` | `int` | `0` | Specify a shutdown timeout in seconds |
1414
| `-v`, `--volumes` | | | Remove named volumes declared in the "volumes" section of the Compose file and anonymous volumes attached to containers. |

docs/reference/compose_exec.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ Execute a command in a running container.
77

88
| Name | Type | Default | Description |
99
|:------------------|:--------------|:--------|:---------------------------------------------------------------------------------|
10-
| `-d`, `--detach` | | | Detached mode: Run command in the background |
10+
| `-d`, `--detach` | | | Detached mode: Run command in the background. |
1111
| `--dry-run` | | | Execute command in dry run mode |
1212
| `-e`, `--env` | `stringArray` | | Set environment variables |
1313
| `--index` | `int` | `0` | index of the container if service has multiple replicas |
1414
| `-T`, `--no-TTY` | | | Disable pseudo-TTY allocation. By default `docker compose exec` allocates a TTY. |
15-
| `--privileged` | | | Give extended privileges to the process |
16-
| `-u`, `--user` | `string` | | Run the command as this user |
17-
| `-w`, `--workdir` | `string` | | Path to workdir directory for this command |
15+
| `--privileged` | | | Give extended privileges to the process. |
16+
| `-u`, `--user` | `string` | | Run the command as this user. |
17+
| `-w`, `--workdir` | `string` | | Path to workdir directory for this command. |
1818

1919

2020
<!---MARKER_GEN_END-->

docs/reference/compose_images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# docker compose images
22

33
<!---MARKER_GEN_START-->
4-
List images used by the created containers.
4+
List images used by the created containers
55

66
### Options
77

docs/reference/compose_logs.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
# docker compose logs
22

33
<!---MARKER_GEN_START-->
4-
View output from containers.
4+
View output from containers
55

66
### Options
77

88
| Name | Type | Default | Description |
99
|:---------------------|:---------|:--------|:-----------------------------------------------------------------------------------------------|
1010
| `--dry-run` | | | Execute command in dry run mode |
11-
| `-f`, `--follow` | | | Follow log output |
12-
| `--no-color` | | | Produce monochrome output |
13-
| `--no-log-prefix` | | | Don't print prefix in logs |
11+
| `-f`, `--follow` | | | Follow log output. |
12+
| `--no-color` | | | Produce monochrome output. |
13+
| `--no-log-prefix` | | | Don't print prefix in logs. |
1414
| `--since` | `string` | | Show logs since timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes) |
15-
| `-n`, `--tail` | `string` | `all` | Number of lines to show from the end of the logs for each container |
16-
| `-t`, `--timestamps` | | | Show timestamps |
15+
| `-n`, `--tail` | `string` | `all` | Number of lines to show from the end of the logs for each container. |
16+
| `-t`, `--timestamps` | | | Show timestamps. |
1717
| `--until` | `string` | | Show logs before a timestamp (e.g. 2013-01-02T13:23:37Z) or relative (e.g. 42m for 42 minutes) |
1818

1919

0 commit comments

Comments
 (0)