-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docker inspect: add support for swarm configs
The docker inspect command did not inspect configs. This patch adds support for it, and while at it, also sorts the list of objects in runInspect. Before this patch: docker config create myconfig ./codecov.yml danpeyh8qzb30vgdj9fr665l1 docker inspect --format='{{.ID}}' myconfig [] Error: No such object: myconfig docker inspect --format='{{.ID}}' --type=config myconfig "config" is not a valid value for --type With this patch: docker inspect --format='{{.ID}}' myconfig danpeyh8qzb30vgdj9fr665l1 docker inspect --format='{{.ID}}' --type=config myconfig danpeyh8qzb30vgdj9fr665l1 Signed-off-by: Sebastiaan van Stijn <[email protected]>
- Loading branch information
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters