Skip to content

Commit

Permalink
Add description and enum values.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmds committed Nov 10, 2021
1 parent 80fc99a commit 5c5a023
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -1211,7 +1211,9 @@
"description": "%vscode-docker.tasks.docker-run.dockerRun.volumes.permissions%",
"enum": [
"rw",
"ro"
"ro",
"rw,z",
"ro,z"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion package.nls.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"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.volumes.permissions": "Permissions for the container for the mapped volume, `rw[,z]` for read-write or `ro[,z]` for read-only. The `,z`-suffix relables the content to make it accessible in the container on SELinux-based systems.",
"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.",
Expand Down

0 comments on commit 5c5a023

Please sign in to comment.