-
Notifications
You must be signed in to change notification settings - Fork 594
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
42 lines (42 loc) · 1.59 KB
/
devcontainer-feature.json
File metadata and controls
42 lines (42 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"id": "sshd",
"version": "1.1.0",
"name": "SSH server",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/sshd",
"description": "Adds a SSH server into a container so that you can use an external terminal, sftp, or SSHFS to interact with it.",
"options": {
"version": {
"type": "string",
"proposals": [
"latest"
],
"default": "latest",
"description": "Currently unused."
},
"gatewayPorts": {
"type": "string",
"enum": [
"no",
"yes",
"clientspecified"
],
"default": "no",
"description": "Enable other hosts in the same network to connect to the forwarded ports"
}
},
"entrypoint": "/usr/local/share/ssh-init.sh",
"customizations": {
"vscode": {
"settings": {
"github.copilot.chat.codeGeneration.instructions": [
{
"text": "This dev container includes an SSH server so that you can use an external terminal, sftp, or SSHFS to interact with it. The first time you've started the container, you will want to set a password for your user. With each connection to the container, you'll want to forward the SSH port to your local machine and use a local terminal or other tool to connect using the password you set."
}
]
}
}
},
"installsAfter": [
"ghcr.io/devcontainers/features/common-utils"
]
}