Introduces a development container configuration with Docker support. Includes PlantUML VS Code extension and forwards port 8080 for local server access. Facilitates a consistent development environment for PlantUML projects.
18 lines
287 B
JSON
18 lines
287 B
JSON
{
|
|
"name": "PlantUML Dev",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"forwardPorts": [8080],
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"jebbs.plantuml"
|
|
],
|
|
"settings": {
|
|
"plantuml.server": "http://localhost:8080"
|
|
}
|
|
}
|
|
}
|
|
}
|