booplaysgba/.vscode/tasks.json

58 lines
1.1 KiB
JSON
Raw Normal View History

{
2022-02-06 16:17:23 +00:00
"version": "2.0.0",
"tasks": [
{
2022-03-03 22:35:45 +00:00
"label": "Start NGINX",
"type": "docker-run",
"dockerRun": {
"containerName": "nginx-rtmp",
"image": "tiangolo/nginx-rtmp",
"ports": [
{
"containerPort": 1935,
"hostPort": 1935
}
],
"remove": true
}
},
{
"label": "Start Redis",
"type": "docker-run",
"dockerRun": {
"containerName": "redis",
"image": "redis:alpine",
"ports": [
{
"containerPort": 6379,
"hostPort": 6379
}
],
"remove": true
}
},
{
"label": "Start NGINX+Redis",
"dependsOn": [
"Start NGINX",
"Start Redis"
]
},
{
"label": "Stop NGINX",
"type": "shell",
"command": "docker stop nginx-rtmp"
},
{
"label": "Stop NGINX",
"type": "shell",
"command": "docker stop redis"
},
{
"label": "Stop NGINX+Redis",
"type": "shell",
"command": "docker stop redis nginx-rtmp"
2022-02-06 16:17:23 +00:00
}
]
}