From 34b9c334a0b8acc3f5f3d9a724dcd96797675b11 Mon Sep 17 00:00:00 2001 From: Eduardo Diaz Date: Thu, 24 Apr 2025 16:53:13 +0200 Subject: [PATCH 1/2] Update oci-artifact.md --- content/manuals/compose/how-tos/oci-artifact.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/content/manuals/compose/how-tos/oci-artifact.md b/content/manuals/compose/how-tos/oci-artifact.md index 33ce8042fc2..b893d89fb5d 100644 --- a/content/manuals/compose/how-tos/oci-artifact.md +++ b/content/manuals/compose/how-tos/oci-artifact.md @@ -141,3 +141,9 @@ Do you want to continue? [y/N]: y Your compose stack "oci://registry.example.com/stack:latest" is stored in "~/Library/Caches/docker-compose/964e715660d6f6c3b384e05e7338613795f7dcd3613890cfa57e3540353b9d6d" ``` + +The docker compose publish command supports non-interactive execution, allowing you to skip the confirmation prompt by including the `-y` (or `--yes`) flag: + +```console +$ docker compose publish -y username/my-compose-app:latest +``` From b3dea2eb1cf8abd53fb6aa281eb527837b82e734 Mon Sep 17 00:00:00 2001 From: Allie Sadler <102604716+aevesdocker@users.noreply.github.com> Date: Thu, 1 May 2025 09:36:26 +0100 Subject: [PATCH 2/2] Update content/manuals/compose/how-tos/oci-artifact.md --- content/manuals/compose/how-tos/oci-artifact.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/manuals/compose/how-tos/oci-artifact.md b/content/manuals/compose/how-tos/oci-artifact.md index b893d89fb5d..0791df4e6f6 100644 --- a/content/manuals/compose/how-tos/oci-artifact.md +++ b/content/manuals/compose/how-tos/oci-artifact.md @@ -142,7 +142,7 @@ Do you want to continue? [y/N]: y Your compose stack "oci://registry.example.com/stack:latest" is stored in "~/Library/Caches/docker-compose/964e715660d6f6c3b384e05e7338613795f7dcd3613890cfa57e3540353b9d6d" ``` -The docker compose publish command supports non-interactive execution, allowing you to skip the confirmation prompt by including the `-y` (or `--yes`) flag: +The `docker compose publish` command supports non-interactive execution, letting you skip the confirmation prompt by including the `-y` (or `--yes`) flag: ```console $ docker compose publish -y username/my-compose-app:latest