From 668644c7cd775928781e2939d37cfd4b94d1dd8f Mon Sep 17 00:00:00 2001 From: Vicente Jimenez Aguilar Date: Wed, 22 Mar 2023 08:45:13 +0100 Subject: [PATCH] Correct config ls filter values docs examples Really use 'project-a' as value in label filter example Replace whole value with just prefix 'test' as intended in name filter example --- docs/reference/commandline/config_ls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/reference/commandline/config_ls.md b/docs/reference/commandline/config_ls.md index a7d2494213..4e410d8b8c 100644 --- a/docs/reference/commandline/config_ls.md +++ b/docs/reference/commandline/config_ls.md @@ -83,7 +83,7 @@ The following filter matches only services with the `project` label with the `project-a` value. ```console -$ docker config ls --filter label=project=test +$ docker config ls --filter label=project=project-a ID NAME CREATED UPDATED mem02h8n73mybpgqjf0kfi1n0 test_config About an hour ago About an hour ago @@ -96,7 +96,7 @@ The `name` filter matches on all or prefix of a config's name. The following filter matches config with a name containing a prefix of `test`. ```console -$ docker config ls --filter name=test_config +$ docker config ls --filter name=test ID NAME CREATED UPDATED mem02h8n73mybpgqjf0kfi1n0 test_config About an hour ago About an hour ago