[READ-ONLY] Mirror of https://github.com/andrioid/hassio-addons. Playing around with Home Assistant
0

Configure Feed

Select the types of activity you want to include in your feed.

hassio-addons / .devcontainer / devcontainer.json
955 B 28 lines
1{ 2 "name": "Example devcontainer for add-on repositories", 3 "image": "ghcr.io/home-assistant/devcontainer:addons", 4 "appPort": ["7123:8123", "7357:4357"], 5 "postStartCommand": "bash devcontainer_bootstrap", 6 "runArgs": ["-e", "GIT_EDITOR=code --wait", "--privileged"], 7 "containerEnv": { 8 "WORKSPACE_DIRECTORY": "${containerWorkspaceFolder}" 9 }, 10 "customizations": { 11 "vscode": { 12 "extensions": ["timonwong.shellcheck", "esbenp.prettier-vscode"], 13 "settings": { 14 "terminal.integrated.profiles.linux": { 15 "zsh": { 16 "path": "/usr/bin/zsh" 17 } 18 }, 19 "terminal.integrated.defaultProfile.linux": "zsh", 20 "editor.formatOnPaste": false, 21 "editor.formatOnSave": true, 22 "editor.formatOnType": true, 23 "files.trimTrailingWhitespace": true 24 } 25 } 26 }, 27 "mounts": [ "type=volume,target=/var/lib/docker" ] 28 }