mirror of
https://github.com/aljazceru/addons.git
synced 2026-01-12 09:44:19 +01:00
18 lines
506 B
JSON
18 lines
506 B
JSON
// Based on https://github.com/issacg/hassio-addon-devcontainer
|
|
{
|
|
"name": "Hass.io Community Add-Ons",
|
|
"context": "..",
|
|
"dockerFile": "Dockerfile",
|
|
"appPort": "7123:8123",
|
|
"runArgs": [
|
|
"-e",
|
|
"GIT_EDITOR=code --wait",
|
|
"--privileged"
|
|
],
|
|
"settings": {
|
|
"terminal.integrated.shell.linux": "/bin/bash"
|
|
},
|
|
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/test_hassio/addons/local,type=bind,consistency=delegated",
|
|
"workspaceFolder": "/workspaces/test_hassio/addons/local"
|
|
}
|