diff options
author | Mickaël Rémond <mremond@process-one.net> | 2020-12-16 08:32:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-16 08:32:15 +0100 |
commit | 8d052fe339b3066bff0ae71480da5d75875c4fdd (patch) | |
tree | be97490986d3e02a1652ad61e015e058a56901df | |
parent | Reword auth_scram_hash info (#3448) (diff) |
Create devcontainer.json
-rw-r--r-- | .devcontainer/devcontainer.json | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..73320ce12 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "name": "ejabberd", + "dockerComposeFile": "docker-compose.yml", + "workspaceFolder": "/workspace", + + // Set *default* container specific settings.json values on container create. + "settings": { + "terminal.integrated.shell.linux": "/bin/zsh", + }, + + // Add the IDs of extensions you want installed when the container is created. + // "extensions": [], + + // Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root. + "remoteUser": "vscode" +} |