Updated VS Code (markdown)

master
Andrew Leech 2023-05-25 14:38:02 +10:00
rodzic 5bf7319917
commit 295912cfc2
1 zmienionych plików z 3 dodań i 1 usunięć

@ -124,7 +124,9 @@ Here's an example `.devcontainer.json` micropython project file you could base y
// Provide USB access to container
"type=bind,source=/dev/bus/usb,target=/dev/bus/usb",
// Provide docker-in-docker support
"type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock"
"type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock",
// Bring the local timezone into the container
"type=bind,readonly,source=/etc/localtime,target=/etc/localtime"
]
}
```