Skip to content
This repository has been archived by the owner on Dec 12, 2024. It is now read-only.

Commit

Permalink
add hugo to team-docs devcontainer (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
usrbinkat authored Nov 15, 2023
1 parent 78cb374 commit 613ee79
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions team-docs/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
// Reference:
// - https://containers.dev/features
// - https://containers.dev/implementors/features
// - https://code.visualstudio.com/docs/getstarted/settings
{
"name": "pulumi",
"build": {
"dockerfile": "../Dockerfile",
"context": ".."
"image": "ghcr.io/pulumi/devcontainer",
"settings": {
"terminal.integrated.shell.linux": "/usr/bin/zsh"
},
"customizations": {
"codespaces": {
"repositories": {
"pulumi/pulumi-hugo": {
"permissions": {
"issues": "write",
"contents": "write",
"pullRequests": "write",
"metadata": "read"
}
}
}
},
"vscode": {
"settings": [
"go.testTags", "all",
Expand All @@ -39,21 +31,30 @@
"vscodevim.vim",
"github.copilot",
"ms-python.python",
"jetpack-io.devbox",
"redhat.vscode-yaml",
"esbenp.prettier-vscode",
"ms-vscode.makefile-tools",
"ms-azuretools.vscode-docker",
"github.vscode-pull-request-github",
"ms-vscode-remote.remote-containers",
"visualstudioexptteam.vscodeintellicode",
"bierner.markdown-preview-github-styles"
]
}
},
"features": {
"ghcr.io/devcontainers/features/hugo:1": {
"version": "0.96.0"
},
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "latest",
"installDockerBuildx": true,
"moby": false
}
},
"remoteUser": "root",
"postCreateCommand": "git submodule update --init --recursive",
"remoteUser": "vscode",
"runArgs": ["--network=host"]
}
}

0 comments on commit 613ee79

Please sign in to comment.