mirror of
https://github.com/AnalogJ/scrutiny.git
synced 2026-04-21 14:57:53 -04:00
Closes #853 --------- Co-authored-by: Aram Akhavan <github@aram.nubmail.ca> Co-authored-by: Aram Akhavan <1147328+kaysond@users.noreply.github.com>
29 lines
673 B
JSON
29 lines
673 B
JSON
{
|
|
"name": "Scrutiny Dev (docker)",
|
|
"dockerComposeFile": "../docker-compose.yml",
|
|
"service": "app",
|
|
"workspaceFolder": "/workspaces/scrutiny",
|
|
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/go:1": "1.25",
|
|
"ghcr.io/devcontainers/features/node:1": "lts"
|
|
},
|
|
|
|
"onCreateCommand": "sudo apt-get update && sudo apt-get install -y smartmontools iputils-ping chromium-browser",
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"golang.go",
|
|
"dbaeumer.vscode-eslint",
|
|
"esbenp.prettier-vscode"
|
|
]
|
|
}
|
|
},
|
|
|
|
"forwardPorts": [8080, 8086],
|
|
|
|
"postCreateCommand": "bash .devcontainer/setup.sh",
|
|
"remoteUser": "vscode"
|
|
}
|