docker remote windows

This commit is contained in:
Dobromir Popov
2025-09-08 08:59:24 +03:00
parent a545714b34
commit c7a9a5c3a5
7 changed files with 831 additions and 2 deletions

View File

@@ -23,13 +23,31 @@
"C_Cpp.default.defines": [
"HAVE_CONFIG_H"
],
"docker.host": "tcp://localhost:2375",
"docker.certificates": [],
"docker.tlsVerify": false,
"docker.machineName": "",
"docker.context": "default",
"docker.showExplorer": true,
"docker.containers.groupBy": "Image",
"docker.containers.showRunningOnly": false,
"docker.images.groupBy": "Repository",
"docker.images.showDanglingImages": false,
"docker.volumes.groupBy": "none",
"docker.networks.groupBy": "none",
"docker.contexts.groupBy": "none",
"docker.commands.build": "docker build --pull --rm -f \"${file}\" -t ${tag} \"${context}\"",
"docker.commands.run": "docker run --rm -d ${exposedPorts} ${tag}",
"docker.commands.runInteractive": "docker run --rm -it ${exposedPorts} ${tag}",
"search.exclude": {
"**/build/**": true,
"**/complete-build-output/**": true,
"**/hip-output/**": true,
"**/rocm-direct-output/**": true,
"**/*.o": true,
"**/*.exe": true
"**/*.exe": true,
"**/node_modules/**": true,
"**/.git/**": true
},
"files.exclude": {
"**/build/**": false,
@@ -39,5 +57,8 @@
},
"task.quickOpen.detail": true,
"task.quickOpen.showAll": true,
"task.saveBeforeRun": "prompt"
"task.saveBeforeRun": "prompt",
"remote.SSH.configFile": "~/.ssh/config",
"remote.SSH.showLoginTerminal": true,
"remote.SSH.useLocalServer": true
}