837f5f595a
Release package / release (push) Failing after 2m10s
Co-authored-by: TakahashiNg <83152264+TakahashiNguyen@users.noreply.github.com> Reviewed-on: #15
30 lines
868 B
JSON
30 lines
868 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",
|
|
"source=${localEnv:USERPROFILE}/.kube,target=/root/.kube,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",
|
|
"redhat.java"
|
|
]
|
|
}
|
|
},
|
|
"containerEnv": {
|
|
"TESTCONTAINERS_RYUK_DISABLED": "true",
|
|
"QUARKUS_DEBUG_HOST": "0.0.0.0"
|
|
},
|
|
"forwardPorts": [5005, 8080]
|
|
}
|