-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
59 lines (55 loc) · 2.1 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.236.0/containers/ubuntu
{
"name": "Template",
"image": "ghcr.io/jon77p/codespaces/images/default:latest@sha256:2cccbb519f16b1c52ffedadb402936081feeb248f30e62e5203061e44120ddc7",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
"postStartCommand": "task setup",
"features": {
"ghcr.io/devcontainers/features/aws-cli:1@sha256:8d39e89cc98291953fb03cf7ef540dc1a7c78c3162f0eee9b61c800e4838f807": {
"version": "latest"
},
// "ghcr.io/devcontainers/features/docker-from-docker:1": {
// "version": "latest"
// },
"ghcr.io/devcontainers/features/rust:1@sha256:aba6f47303b197976902bf544c786b5efecc03c238ff593583e5e74dfa9c7ccb": {
"version": "latest"
},
"ghcr.io/devcontainers/features/terraform:1@sha256:f6cdc43852001e7fb0b73865aa09d57029e3d75900526766d587e16bc1391a80": {
"version": "latest"
},
"ghcr.io/jon77p/codespaces/features/tailscale:latest@sha256:b24f019db029c8630ab3d962f706b792c002e34e8baf2adcf8da3fdef339f850": {
"version": "latest"
},
"ghcr.io/jon77p/codespaces/features/taskfile:latest@sha256:c896eb5bc841597ae291bd18cd719b8eb5cdff93c2852bf31a74d182f2593bef": {
"version": "latest"
}
},
// VSCode Editor Settings
"settings": {
"sync.autoDownload": true,
"sync.autoUpload": true,
"telemetry.enableTelemetry": false,
"redhat.telemetry.enabled": false,
"debug.javascript.autoAttachFilter": "smart",
"git.autofetch": true,
"git.autoStash": true,
"git.branchProtection": ["main"],
"files.associations": {
"*.yml": "yaml"
},
"yaml.schemas": {
"https://json.schemastore.org/taskfile.json": ".github/tasks/**/*.yml"
},
"git.confirmSync": true,
"editor.inlineSuggest.enabled": true,
"github.copilot.inlineSuggest.enable": true,
"github.copilot.enable": {
"*": true,
"yaml": true,
"plaintext": false,
"markdown": false
}
}
}