Files
docker-observation/.vscode/tasks.json
2025-11-30 13:14:10 -06:00

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"
}
}
]
}