28 lines
709 B
JSON
28 lines
709 B
JSON
{
|
|
"name": "Putty",
|
|
"dockerComposeFile": "docker-compose.yaml",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/common-utils:2": {
|
|
"installZsh": "true",
|
|
"username": "user",
|
|
"upgradePackages": "false"
|
|
},
|
|
"ghcr.io/devcontainers/features/git:1": {
|
|
"version": "os-provided",
|
|
"ppa": "false"
|
|
}
|
|
},
|
|
"runArgs": [
|
|
"--cap-add=SYS_PTRACE",
|
|
"--security-opt",
|
|
"seccomp=unconfined"
|
|
],
|
|
"service": "workspace",
|
|
"workspaceFolder": "/workspace",
|
|
"forwardPorts": [
|
|
8080
|
|
],
|
|
"postCreateCommand": "sh ./.devcontainer/postCreateCommand.sh",
|
|
"remoteUser": "user"
|
|
}
|