Skip to content

Instantly share code, notes, and snippets.

@vidhya03
Created April 16, 2023 17:19
Show Gist options
  • Save vidhya03/4a93c0f5fb56a9b5066562eb07cfd964 to your computer and use it in GitHub Desktop.
Save vidhya03/4a93c0f5fb56a9b5066562eb07cfd964 to your computer and use it in GitHub Desktop.
{
"name": "Hugo (Community)",
"build": {
"dockerfile": "Dockerfile",
"args": {
// Update VARIANT to pick hugo variant.
// Example variants: hugo, hugo_extended
// Rebuild the container if it already exists to update.
"VARIANT": "hugo_extended",
// Update VERSION to pick a specific hugo version.
// Example versions: latest, 0.73.0, 0,71.1, 0.109.0
// Rebuild the container if it already exists to update.
"VERSION": "0.109.0",
// Update NODE_VERSION to pick the Node.js version: 12, 14
"NODE_VERSION": "14"
}
},
// Configure tool-specific properties.
"customizations": {
// Configure properties specific to VS Code.
"vscode": {
// Set *default* container specific settings.json values on container create.
"settings": {
"html.format.templating": true
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"bungcip.better-toml",
"davidanson.vscode-markdownlint"
]
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
1313
],
"updateContentCommand": "git config --global --add safe.directory /workspaces/my-useful-commands && rm -rf public",
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "git submodule init && git submodule update --remote && hugo",
// Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
"remoteUser": "node",
"mounts": [
// V: i.e /v/
{
"source": "c:\\common-files",
"target": "/v/",
"type": "bind"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment