Skip to content

Commit 972b8a7

Browse files
committed
edits
1 parent a84165e commit 972b8a7

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

content/manuals/compose/bridge/advanced-integration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords: kubernetes, compose, compose bridge, plugin, advanced
1010

1111
Compose Bridge can also function as a `kubectl` plugin, allowing you to integrate its capabilities directly into your Kubernetes command-line operations. This integration simplifies the process of converting and deploying applications from Docker Compose to Kubernetes.
1212

13-
## Use `compose-bridge` as a `kubectl` plugin
13+
## Use `docker compose bridge` as a `kubectl` plugin
1414

1515
To use the `compose-bridge` binary as a `kubectl` plugin, you need to make sure that the binary is available in your PATH and the name of the binary is prefixed with `kubectl-`.
1616

@@ -37,7 +37,7 @@ To use the `compose-bridge` binary as a `kubectl` plugin, you need to make sure
3737
4. Now you can use `compose-bridge` as a `kubectl` plugin:
3838

3939
```console
40-
$ kubectl compose-bridge [command]
40+
$ kubectl docker compose bridge [command]
4141
```
4242

43-
Replace `[command]` with any `compose-bridge` command you want to use.
43+
Replace `[command]` with any `docker compose bridge` command you want to use.

content/manuals/compose/bridge/customize.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ decisions and preferences, with various level of flexibility and effort.
9191
### Modify the default templates
9292

9393
You can extract templates used by the default transformation `docker/compose-bridge-kubernetes`,
94-
by running `compose-bridge transformations create --from docker/compose-bridge-kubernetes my-template`
94+
by running `docker compose bridge transformations create --from docker/compose-bridge-kubernetes my-template`
9595
and adjusting the templates to match your needs.
9696

9797
The templates are extracted into a directory named after your template name, in this case `my-template`.
@@ -106,7 +106,7 @@ $ docker build --tag mycompany/transform --push .
106106
You can then use your transformation as a replacement:
107107

108108
```console
109-
$ compose-bridge convert --transformations mycompany/transform
109+
$ docker compose bridge convert --transformations mycompany/transform
110110
```
111111

112112
### Add your own templates

content/manuals/compose/bridge/usage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ It also supplies a Kustomize overlay dedicated to Docker Desktop with:
2929
To use the default transformation run the following command:
3030

3131
```console
32-
$ compose-bridge convert
32+
$ docker compose bridge convert
3333
```
3434

3535
Compose looks for a `compose.yaml` file inside the current directory and then converts it.
@@ -69,13 +69,13 @@ the standard deployment command `kubectl apply -k out/overlays/desktop/`.
6969
If you want to convert a `compose.yaml` file that is located in another directory, you can run:
7070

7171
```console
72-
$ compose-bridge convert -f <path-to-file>/compose.yaml
72+
$ docker compose bridge convert -f <path-to-file>/compose.yaml
7373
```
7474

7575
To see all available flags, run:
7676

7777
```console
78-
$ compose-bridge convert --help
78+
$ docker compose bridge convert --help
7979
```
8080

8181
> [!TIP]

0 commit comments

Comments
 (0)