-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer.json.sample
More file actions
64 lines (64 loc) · 1.46 KB
/
devcontainer.json.sample
File metadata and controls
64 lines (64 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "My Project Magento",
"dockerComposeFile": [
"docker-compose.yml",
"magento2-devcontainer/compose/2.4.8/docker-compose.yml",
"docker-compose.shared.yml",
"docker-compose.local.yml"
],
"workspaceFolder": "/workspace",
"service": "php",
"forwardPorts": [
80,
3306,
9200,
5672,
6379
],
"initializeCommand": "[ -f .devcontainer/magento2-devcontainer/.gitignore ] || (git submodule update --init --recursive)",
"portsAttributes": {
"80": {
"label": "Nginx"
},
"3306": {
"label": "MySQL/MariaDB"
},
"9200": {
"label": "OpenSearch"
},
"5672": {
"label": "RabbitMQ"
},
"6379": {
"label": "Redis/Valkey"
}
},
"customizations": {
"vscode": {
"extensions": [
"bmewburn.vscode-intelephense-client",
"xdebug.php-debug",
"esbenp.prettier-vscode"
]
}
},
"remoteUser": "dev",
"features": {
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {
"installYarnUsingApt": false
},
"ghcr.io/anthropics/devcontainer-features/claude-code:1.0": {},
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"moby": false
},
"ghcr.io/devcontainers-extra/features/npm-package:1": {
"package": "@mappia/speedscope"
}
},
"hostRequirements": {
"cpus": 4,
"memory": "8gb"
}
}