OpenMetadata/.devcontainer/dev/devcontainer.json
Teddy 2a01f0fd27
MINOR - DevContainer Setup for contribution (#26623)
* chore(devX): devcontainer for contributor setup

* chore(devX): devcontainer for contributor setup

* Update .devcontainer/dev/devcontainer.json

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update .devcontainer/full-stack/devcontainer.json

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update .devcontainer/dev/post-create.sh

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* chore(devX): devcontainer for contributor setup

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-03-20 08:27:30 +01:00

46 lines
1.2 KiB
JSON

{
"name": "OpenMetadata - Development",
"build": {
"dockerfile": "Dockerfile",
"context": "../.."
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/java:1": {
"version": "21",
"installMaven": true,
"mavenVersion": "3.9.9"
},
"ghcr.io/devcontainers/features/python:1": {
"version": "3.11"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "22.17.0"
}
},
"postCreateCommand": "npm install -g yarn@1.22.22 --force && bash .devcontainer/dev/post-create.sh",
"customizations": {
"vscode": {
"extensions": [
"vscjava.vscode-java-pack",
"ms-python.python",
"ms-python.vscode-pylance",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"eamodio.gitlens",
"redhat.vscode-yaml"
],
"settings": {
"editor.formatOnSave": true
}
}
},
"remoteEnv": {
"PATH": "${containerEnv:PATH}:${containerEnv:HOME}/.local/bin"
},
"remoteUser": "vscode",
"forwardPorts": [3000],
"portsAttributes": {
"3000": { "label": "Frontend Dev Server" }
}
}