diff --git a/VS-Code.md b/VS-Code.md index e8c3816..b06de34 100644 --- a/VS-Code.md +++ b/VS-Code.md @@ -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" ] } ```