18 lines
505 B
JSON
18 lines
505 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Docker Compose Up",
|
|
"type": "shell",
|
|
"problemMatcher": [],
|
|
"command": "docker compose up -d --build --force-recreate"
|
|
,
|
|
"presentation": {
|
|
"focus": true,
|
|
"panel": "dedicated"
|
|
}
|
|
}
|
|
]
|
|
} |