26 lines
712 B
JSON
26 lines
712 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
|
|
{
|
|
"dockerComposeFile": "docker-compose.main.yaml",
|
|
"mounts": [
|
|
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
|
|
],
|
|
"remoteUser": "root",
|
|
"service": "devcontainer",
|
|
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"redhat.vscode-quarkus",
|
|
"vscjava.vscode-java-pack",
|
|
"redhat.vscode-xml",
|
|
"esbenp.prettier-vscode",
|
|
"PeterSchmalfeldt.explorer-exclude"
|
|
]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"TESTCONTAINERS_RYUK_DISABLED": "true"
|
|
}
|
|
}
|