From 0b24409b335e5011848297966718945292942c23 Mon Sep 17 00:00:00 2001 From: Eli Holmes Date: Fri, 3 Mar 2023 15:37:48 -0800 Subject: [PATCH] Create devcontainer.json --- .devcontainer/r-quarto/devcontainer.json | 41 ++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .devcontainer/r-quarto/devcontainer.json diff --git a/.devcontainer/r-quarto/devcontainer.json b/.devcontainer/r-quarto/devcontainer.json new file mode 100644 index 0000000..eb945d1 --- /dev/null +++ b/.devcontainer/r-quarto/devcontainer.json @@ -0,0 +1,41 @@ +// For format details, see https://aka.ms/devcontainer.json. For config options, see the +// README at: https://github.com/rocker-org/devcontainer-templates/tree/main/src/r-ver +{ + "name": "R (rocker/r-ver base)", + "image": "ghcr.io/rocker-org/devcontainer/r-ver:4.2", + + // Features to add to the dev container. More info: https://containers.dev/features. + "features": { + // more info: https://github.com/rocker-org/devcontainer-features/blob/main/src/r-packages/README.md + "ghcr.io/rocker-org/devcontainer-features/r-packages:1": { + "packages": "cli,rlang", + "installSystemRequirements": true + } + // quarto cli + // more info: https://github.com/rocker-org/devcontainer-features/blob/main/src/quarto-cli/README.md + "ghcr.io/rocker-org/devcontainer-features/quarto-cli:1": {} + }, // end features + + // Use 'forwardPorts' to make a list of ports inside the container available locally. + // "forwardPorts": [], + + // Use 'postCreateCommand' to run commands after the container is created. + // "postCreateCommand": "R -q -e 'renv::install()'", + + // Configure tool-specific properties. + // "customizations": { + // "vscode": { + // // Set *default* container specific settings.json values on container create. + // "settings": { + // }, + // // Add the IDs of extensions you want installed when the container is created. + // "extensions": [ + // if we want liveshare. + // "ms-vsliveshare.vsliveshare" + // ] + // } // vscode + // }, // customizations + + // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. + // "remoteUser": "root" +}