From db0d1cfb1fae1fd537a421b45d9a7acbab34e974 Mon Sep 17 00:00:00 2001 From: Istvan Csaba Varga Date: Tue, 7 Apr 2026 14:37:24 +0200 Subject: [PATCH] docs: update list of unimplemented Docker features - Move --health-start-interval to the unimplemented docker run flags list (it was incorrectly marked as :whale: in the health check flags section, but the flag does not exist in the codebase) - Fix typo in compose push section: "docker-compose pull" -> "docker-compose push" - Expand unimplemented compose commands list with missing Docker Compose V2 subcommands: attach, ls, stats, wait, watch (events and scale were already listed) Partial fix for #3867 Signed-off-by: Istvan Csaba Varga --- docs/command-reference.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/command-reference.md b/docs/command-reference.md index a4a29958fd3..3d40d9398b1 100644 --- a/docs/command-reference.md +++ b/docs/command-reference.md @@ -343,7 +343,6 @@ Health check flags: - :whale: `--health-timeout`: Time to wait before considering the check failed (e.g., 5s) - :whale: `--health-retries`: Number of failures before container is considered unhealthy - :whale: `--health-start-period`: Start period for the container to initialize before starting health-retries countdown -- :whale: `--health-start-interval`: Interval between checks during the start period - :whale: `--no-healthcheck`: Disable any health checks defined by image or CLI Logging flags: @@ -454,7 +453,8 @@ IPFS flags: Unimplemented `docker run` flags: `--device-cgroup-rule`, `--disable-content-trust`, `--expose`, - `--link*`, `--publish-all`, `--storage-opt`, `--volume-driver` + `--health-start-interval`, `--link*`, `--publish-all`, `--storage-opt`, + `--volume-driver` ### :whale: nerdctl exec @@ -1809,7 +1809,7 @@ Push service images Usage: `nerdctl compose push [OPTIONS] [SERVICE...]` -Unimplemented `docker-compose pull` (V1) flags: `--ignore-push-failures` +Unimplemented `docker-compose push` (V1) flags: `--ignore-push-failures` ### :whale: nerdctl compose pause @@ -1994,7 +1994,13 @@ Network management: Compose: -- `docker-compose events|scale` +- `docker compose attach` +- `docker compose events` +- `docker compose ls` +- `docker compose scale` +- `docker compose stats` +- `docker compose wait` +- `docker compose watch` Builder: