-
Notifications
You must be signed in to change notification settings - Fork 1
/
.devcontainer.json
45 lines (45 loc) · 1.73 KB
/
.devcontainer.json
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
43
44
45
{
"name": "HeimV",
// Update the 'dockerComposeFile' list if you have more compose files or use different names.
// The .devcontainer/docker-compose.yml file contains any overrides you need/want to make.
"dockerComposeFile": ["./docker-compose.yml"],
// The 'service' property is the name of the service for the container that VS Code should
// use. Update this value and .devcontainer/docker-compose.yml to the real service name.
"service": "app",
// The optional 'workspaceFolder' property is the path VS Code should open by default when
// connected. This is typically a file mount in .devcontainer/docker-compose.yml
"workspaceFolder": "/rails",
// Set *default* container specific settings.json values on container create.
// "settings": {
// "editor.insertSpaces": true,
// "editor.tabSize": 2,
// "terminal.integrated.defaultProfile.linux": "ash"
// },
// Add the IDs of extensions you want installed when the container is created.
"customizations": {
"vscode": {
"extensions": [
"sianglim.slim",
"testdouble.vscode-standard-ruby",
"DavidAnson.vscode-markdownlint",
"dbaeumer.vscode-eslint",
"Shopify.ruby-extensions-pack",
"KoichiSasada.vscode-rdbg",
"biomejs.biome"
]
},
"settings": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"terminal.integrated.defaultProfile.linux": "ash"
}
},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [
// 3000
// ],
// Uncomment to connect as a non-root user. See https://aka.ms/vscode-remote/containers/non-root.
// "remoteUser": "develop",
// "containerUser": "develop",
"shutdownAction": "stopCompose"
}