aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer
diff options
context:
space:
mode:
authorPauiii <[email protected]>2024-10-27 20:17:41 +0100
committerGitHub <[email protected]>2024-10-27 20:17:41 +0100
commitcb5e60590620a52ffeff0d59778c650a467229ff (patch)
treebd31ef7360af862461bdae30f223ef28be8f43ec /.devcontainer
parent7d8dd64cdc2f75f421638c6876de2e9f71e24df2 (diff)
downloadzmk-cb5e60590620a52ffeff0d59778c650a467229ff.tar.gz
zmk-cb5e60590620a52ffeff0d59778c650a467229ff.zip
docs: Devcontainers-cli enhancement (#2548)
* docs: Split local toolchain setup for Docker in two separated approaches. This includes adding a new dropdown for Docker which lists overall steps that have to be done when setting up the environment. Furthermore, the previous documentation is no listed under VSCode and new documentation for the Devcontainer CLI has been added. Since the described approaches for VS Code and Dev Container CLI varied quiet a bit a more unified way of setting them up was added. Due to that, the documentation for building and flashing could be simplified as well. * docs: Update documentation for building and flashing for devcontainers. Moved information about creating volumes for Docker containers into the overall Docker setup documentation. Add warning for changing build directory or adding options for building at the top of the page. * feat(devcontainers): Add new volume for mounting modules. --------- Co-authored-by: Nicolas Munnich <[email protected]>
Diffstat (limited to '.devcontainer')
-rw-r--r--.devcontainer/devcontainer.json1
1 files changed, 1 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
index efa8c229d9..f7dc82512c 100644
--- a/.devcontainer/devcontainer.json
+++ b/.devcontainer/devcontainer.json
@@ -9,6 +9,7 @@
"mounts": [
"type=volume,source=zmk-root-user,target=/root",
"type=volume,source=zmk-config,target=/workspaces/zmk-config",
+ "type=volume,source=zmk-modules,target=/workspaces/zmk-modules",
"type=volume,source=zmk-zephyr,target=${containerWorkspaceFolder}/zephyr",
"type=volume,source=zmk-zephyr-modules,target=${containerWorkspaceFolder}/modules",
"type=volume,source=zmk-zephyr-tools,target=${containerWorkspaceFolder}/tools"