Skip to content

Commit db0d1cf

Browse files
committed
docs: update list of unimplemented Docker features
- Move --health-start-interval to the unimplemented docker run flags list (it was incorrectly marked as 🐳 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 <istvan-csaba.varga@outlook.com>
1 parent f650e7d commit db0d1cf

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

docs/command-reference.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ Health check flags:
343343
- :whale: `--health-timeout`: Time to wait before considering the check failed (e.g., 5s)
344344
- :whale: `--health-retries`: Number of failures before container is considered unhealthy
345345
- :whale: `--health-start-period`: Start period for the container to initialize before starting health-retries countdown
346-
- :whale: `--health-start-interval`: Interval between checks during the start period
347346
- :whale: `--no-healthcheck`: Disable any health checks defined by image or CLI
348347

349348
Logging flags:
@@ -454,7 +453,8 @@ IPFS flags:
454453

455454
Unimplemented `docker run` flags:
456455
`--device-cgroup-rule`, `--disable-content-trust`, `--expose`,
457-
`--link*`, `--publish-all`, `--storage-opt`, `--volume-driver`
456+
`--health-start-interval`, `--link*`, `--publish-all`, `--storage-opt`,
457+
`--volume-driver`
458458

459459
### :whale: nerdctl exec
460460

@@ -1809,7 +1809,7 @@ Push service images
18091809

18101810
Usage: `nerdctl compose push [OPTIONS] [SERVICE...]`
18111811

1812-
Unimplemented `docker-compose pull` (V1) flags: `--ignore-push-failures`
1812+
Unimplemented `docker-compose push` (V1) flags: `--ignore-push-failures`
18131813

18141814
### :whale: nerdctl compose pause
18151815

@@ -1994,7 +1994,13 @@ Network management:
19941994

19951995
Compose:
19961996

1997-
- `docker-compose events|scale`
1997+
- `docker compose attach`
1998+
- `docker compose events`
1999+
- `docker compose ls`
2000+
- `docker compose scale`
2001+
- `docker compose stats`
2002+
- `docker compose wait`
2003+
- `docker compose watch`
19982004

19992005
Builder:
20002006

0 commit comments

Comments
 (0)