actions-hugo/.devcontainer/devcontainer.json
peaceiris 18c640015b
fix
2020-06-21 12:58:55 +09:00

35 lines
1.1 KiB
JSON

{
"name": "Node",
"build": {
"dockerfile": "../Dockerfile",
"context": "..",
"args": {
"NODE_VERSION": "12.18.1"
}
},
// Set *default* container specific settings.json values on container create.
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"editorconfig.editorconfig"
],
// 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": "npm ci",
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "vscode",
// Developing inside a container on a remote Docker host
// https://code.visualstudio.com/docs/remote/containers-advanced#_developing-inside-a-container-on-a-remote-docker-host
"workspaceFolder": "/workspace",
"workspaceMount": "source=/home/iris/Documents/repos/github.com/peaceiris/actions-hugo,target=/workspace,type=volume"
}