{ "vscode-docker.debug.containerName": "Name of the container used for debugging.", "vscode-docker.debug.dockerServerReadyAction.description": "Options for launching a browser to the Docker container. Similar to serverReadyAction, but replaces container ports with host ports.", "vscode-docker.debug.dockerServerReadyAction.action": "The action to take when the pattern is found.", "vscode-docker.debug.dockerServerReadyAction.containerName": "The container name to match the host port.", "vscode-docker.debug.dockerServerReadyAction.pattern": "The regex pattern to look for in Debug console output.", "vscode-docker.debug.dockerServerReadyAction.uriFormat": "The URI format to launch.", "vscode-docker.debug.dockerServerReadyAction.webRoot": "The root folder from which web pages are served.", "vscode-docker.debug.removeContainerAfterDebug": "Whether to remove the debug container after debugging.", "vscode-docker.debug.platform": "The target platform for the application.", "vscode-docker.debug.netCore.description": "Options for debugging .NET Core projects in Docker.", "vscode-docker.debug.netCore.appProject": "The .NET Core project (.csproj, .fsproj, etc.) to debug.", "vscode-docker.debug.node.description": "Options for debugging Node.js projects in Docker.", "vscode-docker.debug.node.port": "The debug port to use.", "vscode-docker.debug.node.address": "TCP/IP address of the debug port.", "vscode-docker.debug.node.sourceMaps": "Enable source maps by setting this to `true`.", "vscode-docker.debug.node.outFiles": "Array of glob patterns for locating generated JavaScript files.", "vscode-docker.debug.node.autoAttachChildProcesses": "Track all subprocesses of debuggee and automatically attach to those that are launched in debug mode.", "vscode-docker.debug.node.timeout": "When restarting a session, give up after this number of milliseconds.", "vscode-docker.debug.node.stopOnEntry": "Break immediately when the program launches.", "vscode-docker.debug.node.localRoot": "VS Code's root directory.", "vscode-docker.debug.node.package": "The path to the package.json for the application.", "vscode-docker.debug.node.remoteRoot": "Node's root directory within the Docker container.", "vscode-docker.debug.node.smartStep": "Try to automatically step over code that doesn't map to source files.", "vscode-docker.debug.node.skipFiles": "Automatically skip files covered by these glob patterns.", "vscode-docker.debug.node.trace": "Enable diagnostic output.", "vscode-docker.debug.python.description": "Options for debugging Python applications in Docker.", "vscode-docker.debug.python.host": "The host for remote debugging.", "vscode-docker.debug.python.port": "The port for remote debugging.", "vscode-docker.debug.python.pathMappings.localRoot": "The host path.", "vscode-docker.debug.python.pathMappings.remoteRoot": "The container path.", "vscode-docker.debug.python.justMyCode": "Debug only user-written code.", "vscode-docker.debug.python.django": "Django debugging.", "vscode-docker.debug.python.fastapi": "FastAPI debugging.", "vscode-docker.debug.python.jinja": "Jinja template debugging (e.g. Flask).", "vscode-docker.debug.python.projectType": "Type of the Python app.", "vscode-docker.debug.python.args": "Arguments passed to the Python app.", "vscode-docker.debug.attach.containerName": "The container name to attach to. If not specified, then user will be prompted to pick a container.", "vscode-docker.debug.attach.processName": "The process name to attach to. If this is used, 'processId' should not be used.", "vscode-docker.debug.attach.processIdString": "The process id to attach to. Use \"${command:pickProcess}\" to get a list of running processes to attach to. If 'processId' used, 'processName' should not be used.", "vscode-docker.debug.attach.processIdInteger": "The process id to attach to. Use \"${command:pickProcess}\" to get a list of running processes to attach to. If 'processId' used, 'processName' should not be used.", "vscode-docker.debug.attach.platform": "The target platform for the application.", "vscode-docker.debug.attach.sourceFileMap": "Optional source file mappings passed to the debug engine. Example: '{ \"/src\":\"${workspaceFolder}\" }'", "vscode-docker.debug.attach.netCore.description": "Options for debugging .NET Core projects in Docker.", "vscode-docker.debug.attach.netCore.debuggerPath": "The path for the debugger in the target container, for example `/remote_debugger/vsdbg`.", "vscode-docker.tasks.docker-build.dockerBuild.description": "Options for building the Docker image used for debugging. Learn more at https://aka.ms/vscode-docker-build-task", "vscode-docker.tasks.docker-build.dockerBuild.buildArgs": "Build arguments applied to the Docker image used for debugging.", "vscode-docker.tasks.docker-build.dockerBuild.context": "Path to the Docker build context.", "vscode-docker.tasks.docker-build.dockerBuild.dockerfile": "Path to the Dockerfile used for the build.", "vscode-docker.tasks.docker-build.dockerBuild.labels.description": "Labels applied to the Docker image used for debugging.", "vscode-docker.tasks.docker-build.dockerBuild.labels.includeDefaults": "Whether to include the default set of labels defined by the Docker extension", "vscode-docker.tasks.docker-build.dockerBuild.tag": "Tag applied to the Docker image used for debugging.", "vscode-docker.tasks.docker-build.dockerBuild.target": "Docker build target (stage) used for debugging.", "vscode-docker.tasks.docker-build.dockerBuild.pull": "Whether or not to pull new base images before building.", "vscode-docker.tasks.docker-build.dockerBuild.customOptions": "Any other options to add to the `docker build` command.", "vscode-docker.tasks.docker-build.platform": "The target platform for the application.", "vscode-docker.tasks.docker-build.netCore.description": "Options for building .NET Core projects in Docker.", "vscode-docker.tasks.docker-build.netCore.appProject": "The .NET Core project (.csproj, .fsproj, etc.) to build.", "vscode-docker.tasks.docker-build.node.description": "Options for building Node.js applications in Docker.", "vscode-docker.tasks.docker-build.node.package": "The path to the package.json for the application.", "vscode-docker.tasks.docker-build.python.description": "Options for building Python applications in Docker.", "vscode-docker.tasks.docker-run.dockerRun.description": "Options for running the Docker container used for debugging. Learn more at https://aka.ms/vscode-docker-run-task", "vscode-docker.tasks.docker-run.dockerRun.command": "The command to run upon starting the container.", "vscode-docker.tasks.docker-run.dockerRun.containerName": "Name of the container used for debugging.", "vscode-docker.tasks.docker-run.dockerRun.env": "Environment variables applied to the Docker container used for debugging.", "vscode-docker.tasks.docker-run.dockerRun.envFiles": "Files of environment variables read in and applied to the Docker container used for debugging.", "vscode-docker.tasks.docker-run.dockerRun.image": "The image to run.", "vscode-docker.tasks.docker-run.dockerRun.labels.description": "Labels applied to the Docker container used for debugging.", "vscode-docker.tasks.docker-run.dockerRun.labels.includeDefaults": "Whether to include the default set of labels defined by the Docker extension", "vscode-docker.tasks.docker-run.dockerRun.network": "The network to which the container will be connected.", "vscode-docker.tasks.docker-run.dockerRun.networkAlias": "The network-scoped alias to assign to the container.", "vscode-docker.tasks.docker-run.dockerRun.os": "The container operating system.", "vscode-docker.tasks.docker-run.dockerRun.ports.description": "Ports that are going to be mapped on the host.", "vscode-docker.tasks.docker-run.dockerRun.ports.hostPort": "Port number to be bound on the host.", "vscode-docker.tasks.docker-run.dockerRun.ports.containerPort": "Port number of the container to be bound.", "vscode-docker.tasks.docker-run.dockerRun.ports.protocol": "Specific protocol for the binding (`tcp | udp`).", "vscode-docker.tasks.docker-run.dockerRun.portsPublishAll": "Whether to publish all exposed container ports to random ports on the host.", "vscode-docker.tasks.docker-run.dockerRun.remove": "Whether to clean up the container and remove the file system when the container exits.", "vscode-docker.tasks.docker-run.dockerRun.extraHosts.description": "Hosts to be added to the container's `hosts` file for DNS resolution.", "vscode-docker.tasks.docker-run.dockerRun.extraHosts.hostname": "Hostname for dns resolution.", "vscode-docker.tasks.docker-run.dockerRun.extraHosts.ip": "IP associated to the hostname.", "vscode-docker.tasks.docker-run.dockerRun.volumes.description": "Volumes that are going to be mapped to the container.", "vscode-docker.tasks.docker-run.dockerRun.volumes.localPath": "Path on local machine that will be mapped. The folder will be created if it does not exist.", "vscode-docker.tasks.docker-run.dockerRun.volumes.containerPath": "Path where the volume will be mapped within the container. The folder will be created if it does not exist.", "vscode-docker.tasks.docker-run.dockerRun.volumes.permissions": "Permissions for the container for the mapped volume, `rw` for read-write or `ro` for read-only.", "vscode-docker.tasks.docker-run.dockerRun.customOptions": "Any other options to add to the `docker run` command.", "vscode-docker.tasks.docker-run.platform": "The target platform for the application.", "vscode-docker.tasks.docker-run.netCore.description": "Options for running .NET Core projects in Docker.", "vscode-docker.tasks.docker-run.netCore.appProject": "The .NET Core project (.csproj, .fsproj, etc.) to build.", "vscode-docker.tasks.docker-run.netCore.enableDebugging": "Whether to enable debugging within the container.", "vscode-docker.tasks.docker-run.netCore.configureSsl": "Whether to configure certificate and other settings to enable SSL on ASP.NET Core web services.", "vscode-docker.tasks.docker-run.node.description": "Options for running Node.js applications in Docker.", "vscode-docker.tasks.docker-run.node.enableDebugging": "Whether to enable debugging within the container.", "vscode-docker.tasks.docker-run.node.inspectMode": "Whether debugging should break immediately upon application start.", "vscode-docker.tasks.docker-run.node.inspectPort": "The port on which debugging should occur.", "vscode-docker.tasks.docker-run.node.package": "The path to the package.json for the application.", "vscode-docker.tasks.docker-run.python.description": "Options for running Python applications in Docker.", "vscode-docker.tasks.docker-run.python.file": "The Python file to run.", "vscode-docker.tasks.docker-run.python.module": "The Python module to run.", "vscode-docker.tasks.docker-run.python.args": "Arguments passed to the Python app.", "vscode-docker.tasks.docker-run.python.wait": "Whether to wait for debugger to attach.", "vscode-docker.tasks.docker-run.python.debugPort": "The port that the debugger will listen on.", "vscode-docker.tasks.docker-compose.dockerCompose.description": "Options for the `docker-compose` command.", "vscode-docker.tasks.docker-compose.dockerCompose.up.description": "Options for the `docker-compose up` command.", "vscode-docker.tasks.docker-compose.dockerCompose.up.detached": "Whether or not to run detached.", "vscode-docker.tasks.docker-compose.dockerCompose.up.build": "Whether or not to build.", "vscode-docker.tasks.docker-compose.dockerCompose.up.scale": "The scale for each service.", "vscode-docker.tasks.docker-compose.dockerCompose.up.services": "A subset of services to start.", "vscode-docker.tasks.docker-compose.dockerCompose.up.customOptions": "Any other options to add to the `docker-compose up` command.", "vscode-docker.tasks.docker-compose.dockerCompose.down.description": "Options for the `docker-compose down` command.", "vscode-docker.tasks.docker-compose.dockerCompose.down.removeImages": "Images to remove.", "vscode-docker.tasks.docker-compose.dockerCompose.down.removeVolumes": "Whether or not to remove named and anonymous volumes.", "vscode-docker.tasks.docker-compose.dockerCompose.down.customOptions": "Any other options to add to the `docker-compose down` command.", "vscode-docker.tasks.docker-compose.dockerCompose.envFiles.description": "Files of environment variables read in and applied to the Docker containers.", "vscode-docker.tasks.docker-compose.dockerCompose.files.description": "The docker-compose files to include, in order.", "vscode-docker.config.docker.promptForRegistryWhenPushingImages": "Prompt for registry selection if the image is not explicitly tagged.", "vscode-docker.config.template.build.template": "The command template.", "vscode-docker.config.template.build.label": "The label displayed to the user.", "vscode-docker.config.template.build.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.", "vscode-docker.config.template.build.description": "Command template(s) for `docker build` commands.", "vscode-docker.config.template.run.template": "The command template.", "vscode-docker.config.template.run.label": "The label displayed to the user.", "vscode-docker.config.template.run.match": "The regular expression for choosing the right template. Checked against image name, etc.", "vscode-docker.config.template.run.description": "Command templates for `docker run` commands.", "vscode-docker.config.template.runInteractive.template": "The command template.", "vscode-docker.config.template.runInteractive.label": "The label displayed to the user.", "vscode-docker.config.template.runInteractive.match": "The regular expression for choosing the right template. Checked against image name, etc.", "vscode-docker.config.template.runInteractive.description": "Command templates for `docker run -it` (interactive) commands.", "vscode-docker.config.template.attach.template": "The command template.", "vscode-docker.config.template.attach.label": "The label displayed to the user.", "vscode-docker.config.template.attach.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.", "vscode-docker.config.template.attach.description": "Command templates for `docker attach` / `docker exec -it` commands.", "vscode-docker.config.template.logs.template": "The command template.", "vscode-docker.config.template.logs.label": "The label displayed to the user.", "vscode-docker.config.template.logs.match": "The regular expression for choosing the right template. Checked against container name, container's image name, etc.", "vscode-docker.config.template.logs.description": "Command templates for `docker logs` commands.", "vscode-docker.config.template.composeUp.template": "The command template.", "vscode-docker.config.template.composeUp.label": "The label displayed to the user.", "vscode-docker.config.template.composeUp.match": "The regular expression for choosing the right template. Checked against docker-compose YAML files, folder name, etc.", "vscode-docker.config.template.composeUp.description": "Command templates for `docker-compose up` commands.", "vscode-docker.config.template.composeDown.template": "The command template.", "vscode-docker.config.template.composeDown.label": "The label displayed to the user.", "vscode-docker.config.template.composeDown.match": "The regular expression for choosing the right template. Checked against docker-compose YAML files, folder name, etc.", "vscode-docker.config.template.composeDown.description": "Command templates for `docker-compose down` commands.", "vscode-docker.config.template.contextTypes.description": "The context types in which the command template applies. If undefined or empty, the template applies in all context types.", "vscode-docker.config.docker.explorerRefreshInterval": "Docker view refresh interval (milliseconds)", "vscode-docker.config.docker.containers.groupBy": "The property to use to group containers in Docker view: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, Tag, or None", "vscode-docker.config.docker.containers.description": "Any secondary properties to display for a container (an array). Possible elements include: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, and Tag", "vscode-docker.config.docker.containers.label": "The primary property to display for a container: ContainerId, ContainerName, CreatedTime, FullTag, ImageId, Networks, Ports, Registry, Repository, RepositoryName, RepositoryNameAndTag, State, Status, or Tag", "vscode-docker.config.docker.containers.sortBy": "The property to use to sort containers in Docker view: CreatedTime or Label", "vscode-docker.config.docker.contexts.description": "Any secondary properties to display for a Docker context (an array). Possible elements include: Name, Description and DockerEndpoint", "vscode-docker.config.docker.contexts.label": "The primary property to display for a Docker context: Name, Description or DockerEndpoint", "vscode-docker.config.docker.images.groupBy": "The property to use to group images in Docker view: CreatedTime, FullTag, ImageId, None, Registry, Repository, RepositoryName, RepositoryNameAndTag, or Tag", "vscode-docker.config.docker.images.description": "Any secondary properties to display for a image (an array). Possible elements include: CreatedTime, FullTag, ImageId, Registry, Repository, RepositoryName, RepositoryNameAndTag, Tag, and Size", "vscode-docker.config.docker.images.label": "The primary property to display for a image: CreatedTime, FullTag, ImageId, Registry, Repository, RepositoryName, RepositoryNameAndTag, Tag, or Size", "vscode-docker.config.docker.images.sortBy": "The property to use to sort images in Docker view: CreatedTime, Label, or Size", "vscode-docker.config.docker.images.checkForOutdatedImages": "Check for outdated base images once per Visual Studio Code session", "vscode-docker.config.docker.networks.groupBy": "The property to use to group networks in Docker view: CreatedTime, NetworkDriver, NetworkId, NetworkName, or None", "vscode-docker.config.docker.networks.description": "Any secondary properties to display for a Docker network (an array). Possible elements include CreatedTime, NetworkDriver, NetworkId, and NetworkName", "vscode-docker.config.docker.networks.label": "The primary property to display for a Docker network: CreatedTime, NetworkDriver, NetworkId, or NetworkName", "vscode-docker.config.docker.networks.sortBy": "The property to use to sort networks in Docker view: CreatedTime or Label", "vscode-docker.config.docker.networks.showBuiltIn": "Show the built-in networks in the explorer.", "vscode-docker.config.docker.volumes.groupBy": "The property to use to group volumes in Docker view: CreatedTime, VolumeName, or None", "vscode-docker.config.docker.volumes.description": "Any secondary properties to display for a Docker volume (an array). Possible values include CreatedTime and VolumeName", "vscode-docker.config.docker.volumes.label": "The primary property to display for a Docker volume: CreatedTime or VolumeName", "vscode-docker.config.docker.volumes.sortBy": "The property to use to sort volumes in Docker view: CreatedTime or Label", "vscode-docker.config.docker.imageBuildContextPath": "Build context PATH to pass to Docker build command.", "vscode-docker.config.docker.truncateLongRegistryPaths": "Set to true to truncate long image and container registry paths in Docker view", "vscode-docker.config.docker.truncateMaxLength": "Maximum length of a registry paths displayed in Docker view, including ellipsis. The truncateLongRegistryPaths setting must be set to true for truncateMaxLength setting to be effective.", "vscode-docker.config.docker.dockerodeOptions": "If specified, this object will be passed to the Dockerode constructor. Takes precedence over DOCKER_HOST, the Docker Host setting, and any existing Docker contexts.", "vscode-docker.config.docker.host": "Equivalent to setting the DOCKER_HOST environment variable, for example, ssh://myuser@mymachine or tcp://1.2.3.4.", "vscode-docker.config.docker.context": "Equivalent to setting the DOCKER_CONTEXT environment variable.", "vscode-docker.config.docker.certPath": "Equivalent to setting the DOCKER_CERT_PATH environment variable.", "vscode-docker.config.docker.tlsVerify": "Equivalent to setting the DOCKER_TLS_VERIFY environment variable.", "vscode-docker.config.docker.machineName": "Equivalent to setting the DOCKER_MACHINE_NAME environment variable.", "vscode-docker.config.docker.languageserver.diagnostics.deprecatedMaintainer": "Controls the diagnostic severity for the deprecated MAINTAINER instruction", "vscode-docker.config.docker.languageserver.diagnostics.emptyContinuationLine": "Controls the diagnostic severity for flagging empty continuation lines found in instructions that span multiple lines", "vscode-docker.config.docker.languageserver.diagnostics.directiveCasing": "Controls the diagnostic severity for parser directives that are not written in lowercase", "vscode-docker.config.docker.languageserver.diagnostics.instructionCasing": "Controls the diagnostic severity for instructions that are not written in uppercase", "vscode-docker.config.docker.languageserver.diagnostics.instructionCmdMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple CMD instructions", "vscode-docker.config.docker.languageserver.diagnostics.instructionEntrypointMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple ENTRYPOINT instructions", "vscode-docker.config.docker.languageserver.diagnostics.instructionHealthcheckMultiple": "Controls the diagnostic severity for flagging a Dockerfile with multiple HEALTHCHECK instructions", "vscode-docker.config.docker.languageserver.diagnostics.instructionJsonInSingleQuotes": "Controls the diagnostic severity for JSON instructions that are written incorrectly with single quotes", "vscode-docker.config.docker.languageserver.diagnostics.instructionWorkdirRelative": "Controls the diagnostic severity for WORKDIR instructions that do not point to an absolute path", "vscode-docker.config.docker.languageserver.formatter.ignoreMultilineInstructions": "Controls whether the Dockerfile formatter should ignore instructions that span multiple lines when formatting", "vscode-docker.config.docker.dockerComposeBuild": "Set to true to include --build option when docker-compose command is invoked", "vscode-docker.config.docker.dockerComposeDetached": "Set to true to include --d (detached) option when docker-compose command is invoked", "vscode-docker.config.docker.showRemoteWorkspaceWarning": "Set to true to prompt to switch from \"UI\" extension mode to \"Workspace\" extension mode if an operation is not supported in UI mode.", "vscode-docker.config.docker.scaffolding.templatePath": "The path to use for scaffolding templates.", "vscode-docker.config.docker.showStartPage": "Show the Docker extension Start Page when a new update is released.", "vscode-docker.config.docker.dockerPath": "Absolute path to Docker client executable ('docker' command). If the path contains whitespace, it needs to be quoted appropriately.", "vscode-docker.config.deprecated": "This setting has been deprecated and will be removed in a future release.", "vscode-docker.commands.compose.down": "Compose Down", "vscode-docker.commands.compose.restart": "Compose Restart", "vscode-docker.commands.compose.up": "Compose Up", "vscode-docker.commands.compose.up.subset": "Compose Up - Select Services", "vscode-docker.commands.configure": "Add Docker Files to Workspace...", "vscode-docker.commands.configureCompose": "Add Docker Compose Files to Workspace...", "vscode-docker.commands.containers.attachShell": "Attach Shell", "vscode-docker.commands.containers.browse": "Open in Browser", "vscode-docker.commands.containers.configureExplorer": "Configure Explorer...", "vscode-docker.commands.containers.downloadFile": "Download...", "vscode-docker.commands.containers.inspect": "Inspect", "vscode-docker.commands.containers.openFile": "Open", "vscode-docker.commands.containers.prune": "Prune...", "vscode-docker.commands.containers.refresh": "Refresh", "vscode-docker.commands.containers.remove": "Remove...", "vscode-docker.commands.containers.restart": "Restart", "vscode-docker.commands.containers.select": "Select container", "vscode-docker.commands.containers.start": "Start", "vscode-docker.commands.containers.stop": "Stop", "vscode-docker.commands.containers.viewLogs": "View Logs", "vscode-docker.commands.containers.composeGroup.logs": "Compose Logs", "vscode-docker.commands.containers.composeGroup.restart": "Compose Restart", "vscode-docker.commands.containers.composeGroup.down": "Compose Down", "vscode-docker.commands.debugging.initializeForDebugging": "Initialize for Docker debugging", "vscode-docker.commands.help": "Docker Help", "vscode-docker.commands.help.reportIssue": "Report Issue", "vscode-docker.commands.help.openStartPage": "Open Start Page", "vscode-docker.commands.images.build": "Build Image...", "vscode-docker.commands.images.configureExplorer": "Configure Explorer...", "vscode-docker.commands.images.inspect": "Inspect", "vscode-docker.commands.images.showDangling": "Show dangling images", "vscode-docker.commands.images.prune": "Prune...", "vscode-docker.commands.images.pull": "Pull", "vscode-docker.commands.images.push": "Push...", "vscode-docker.commands.images.refresh": "Refresh", "vscode-docker.commands.images.remove": "Remove...", "vscode-docker.commands.images.run": "Run", "vscode-docker.commands.images.runAzureCli": "Run Azure CLI", "vscode-docker.commands.images.runInteractive": "Run Interactive", "vscode-docker.commands.images.tag": "Tag...", "vscode-docker.commands.images.copyFullTag": "Copy Full Tag", "vscode-docker.commands.installDocker": "Install Docker", "vscode-docker.commands.networks.configureExplorer": "Configure Explorer...", "vscode-docker.commands.networks.create": "Create...", "vscode-docker.commands.networks.inspect": "Inspect", "vscode-docker.commands.networks.prune": "Prune...", "vscode-docker.commands.networks.refresh": "Refresh", "vscode-docker.commands.networks.remove": "Remove...", "vscode-docker.commands.pruneSystem": "Prune System...", "vscode-docker.commands.registries.azure.buildImage": "Build Image in Azure...", "vscode-docker.commands.registries.azure.createRegistry": "Create Registry...", "vscode-docker.commands.registries.azure.deleteRegistry": "Delete Registry...", "vscode-docker.commands.registries.azure.deleteRepository": "Delete Repository...", "vscode-docker.commands.registries.azure.openInPortal": "Open in Portal", "vscode-docker.commands.registries.azure.runFileAsTask": "Run as Task in Azure...", "vscode-docker.commands.registries.azure.runTask": "Run Task", "vscode-docker.commands.registries.azure.selectSubscriptions": "Select Subscriptions...", "vscode-docker.commands.registries.azure.untagImage": "Untag Image...", "vscode-docker.commands.registries.azure.viewProperties": "View Properties", "vscode-docker.commands.registries.azure.viewLogs": "View Logs", "vscode-docker.commands.registries.connect": "Connect Registry...", "vscode-docker.commands.registries.reconnectRegistry": "Re-enter credentials", "vscode-docker.commands.registries.copyImageDigest": "Copy Image Digest", "vscode-docker.commands.registries.deleteImage": "Delete Image...", "vscode-docker.commands.registries.deployImageToAzure": "Deploy Image to Azure App Service...", "vscode-docker.commands.registries.deployImageToAci": "Deploy Image to Azure Container Instances...", "vscode-docker.commands.registries.disconnectRegistry": "Disconnect", "vscode-docker.commands.registries.dockerHub.openInBrowser": "Open in Browser", "vscode-docker.commands.registries.help": "Registries Help", "vscode-docker.commands.registries.logInToDockerCli": "Log In to Docker CLI", "vscode-docker.commands.registries.logOutOfDockerCli": "Log Out of Docker CLI", "vscode-docker.commands.registries.pullImage": "Pull Image", "vscode-docker.commands.registries.pullRepository": "Pull Repository", "vscode-docker.commands.registries.refresh": "Refresh", "vscode-docker.commands.volumes.configureExplorer": "Configure Explorer...", "vscode-docker.commands.volumes.inspect": "Inspect", "vscode-docker.commands.volumes.prune": "Prune...", "vscode-docker.commands.volumes.refresh": "Refresh", "vscode-docker.commands.volumes.remove": "Remove...", "vscode-docker.commands.contexts.use": "Use", "vscode-docker.commands.contexts.inspect": "Inspect", "vscode-docker.commands.contexts.remove": "Remove...", "vscode-docker.commands.contexts.configureExplorer": "Configure Explorer...", "vscode-docker.commands.contexts.refresh": "Refresh", "vscode-docker.commands.contexts.help": "Docker Context Help", "vscode-docker.commands.contexts.create.aci": "Create Azure Container Instances Context...", "vscode-docker.commands.category.docker": "Docker", "vscode-docker.commands.category.dockerContainers": "Docker Containers", "vscode-docker.commands.category.dockerImages": "Docker Images", "vscode-docker.commands.category.dockerNetworks": "Docker Networks", "vscode-docker.commands.category.azureContainerRegistry": "Azure Container Registry", "vscode-docker.commands.category.dockerRegistries": "Docker Registries", "vscode-docker.commands.category.dockerHub": "Docker Hub", "vscode-docker.commands.category.dockerVolumes": "Docker Volumes", "vscode-docker.commands.category.contexts": "Docker Contexts", "vscode-docker.views.dockerContainers": "Containers", "vscode-docker.views.activityBar": "Docker", "vscode-docker.views.dockerImages": "Images", "vscode-docker.views.dockerRegistries": "Registries", "vscode-docker.views.dockerNetworks": "Networks", "vscode-docker.views.dockerVolumes": "Volumes", "vscode-docker.views.dockerContexts": "Contexts", "vscode-docker.views.help": "Help and Feedback" }