Skip to content

Commit

Permalink
fix(tools): missing DockerTasks command (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
olsh authored and matkoch committed Sep 4, 2023
1 parent 43c982f commit 7a23c6b
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions source/Nuke.Common/Tools/Docker/Docker.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/engine-cli/docker_system_prune.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/engine-cli/docker_builder.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/buildx/docker_buildx_build.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/buildx/docker_buildx_create.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/engine-cli/docker_container_pause.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/engine-cli/docker_container_commit.yaml",
"https://raw.githubusercontent.com/docker/docker.github.io/50fe61e/_data/engine-cli/docker_context_ls.yaml",
Expand Down Expand Up @@ -8515,6 +8516,88 @@
]
}
},
{
"help": "Create a new builder instance using Docker Buildx plugin.",
"postfix": "BuildxCreate",
"definiteArgument": "buildx create",
"settingsClass": {
"baseClass": "DockerSettings",
"properties": [
{
"name": "Append",
"type": "bool",
"format": "--append",
"help": "Append a node to builder instead of changing it."
},
{
"name": "Bootstrap",
"type": "bool",
"format": "--bootstrap",
"help": "Boot builder after creation."
},
{
"name": "BuildKitDaemonFlags",
"type": "string",
"format": "--buildkitd-flags {value}",
"help": "Flags for buildkitd daemon."
},
{
"name": "BuildKitDFlags",
"type": "string",
"format": "--buildkitd-flags {value}",
"help": "Flags for buildkitd daemon."
},
{
"name": "Config",
"type": "string",
"format": "--config {value}",
"help": "BuildKit config file."
},
{
"name": "Driver",
"type": "DriverType",
"format": "--driver {value}",
"help": "Driver to use (available: <c>docker-container</c>, <c>kubernetes</c>, <c>remote</c>)."
},
{
"name": "DriverOpt",
"type": "string",
"format": "--driver-opt {value}",
"help": "Options for the driver."
},
{
"name": "Leave",
"type": "bool",
"format": "--leave",
"help": "Remove a node from builder instead of changing it."
},
{
"name": "Name",
"type": "string",
"format": "--name {value}",
"help": "Builder instance name."
},
{
"name": "Node",
"type": "string",
"format": "--node {value}",
"help": "Create/modify node with given name."
},
{
"name": "Platform",
"type": "string",
"format": "--platform {value}",
"help": "Fixed platforms for current node."
},
{
"name": "Use",
"type": "bool",
"format": "--use",
"help": "Set the current builder instance."
}
]
}
},
{
"help": "Display a live stream of container(s) resource usage statistics.",
"postfix": "Stats",
Expand Down Expand Up @@ -10079,6 +10162,14 @@
"plain",
"tty"
]
},
{
"name": "DriverType",
"values": [
"docker-container",
"kubernetes",
"remote"
]
}
]
}

0 comments on commit 7a23c6b

Please sign in to comment.