-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfull-stack.devcontainer.json
More file actions
32 lines (32 loc) · 1.32 KB
/
full-stack.devcontainer.json
File metadata and controls
32 lines (32 loc) · 1.32 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
{
"name": "Full-Stack Development Environment",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"ghcr.io/devcontainers/features/python:1": {},
"ghcr.io/devcontainers/features/node:1": {
"version": "22"
},
"ghcr.io/devcontainers/features/rust:1": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest",
"enableNonRootDocker": "true"
},
"ghcr.io/devcontainers/features/aws-cli:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/eitsupi/devcontainer-features/jq-likes:2": {},
"ghcr.io/get2knowio/devcontainer-features/ai-clis:2": {},
"ghcr.io/get2knowio/devcontainer-features/modern-cli-tools:2": {},
"ghcr.io/get2knowio/devcontainer-features/node-dev-tools:2": {},
"ghcr.io/get2knowio/devcontainer-features/rust-dev-tools:2": {},
"ghcr.io/get2knowio/devcontainer-features/github-actions-tools:2": {},
"ghcr.io/get2knowio/devcontainer-features/python-tools:2": {}
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "zsh"
}
}
},
"postCreateCommand": "poetry --version && node --version && rustc --version"
}