1
0
mirror of https://github.com/XFox111/my-website.git synced 2026-04-22 07:28:01 +03:00

chore: docker run vscode task

This commit is contained in:
2025-07-22 14:52:55 +00:00
parent 3dc42cbf8d
commit 40e188991f
+17
View File
@@ -56,5 +56,22 @@
"label": "docker: build", "label": "docker: build",
"detail": "Build a Docker image" "detail": "Build a Docker image"
}, },
{
"type": "shell",
"command": "docker",
"args": [
"run",
"--rm",
"--env-file",
".env.local",
"-p",
"3000:3000",
"my-website"
],
"group": "test",
"problemMatcher": [],
"label": "docker: run",
"detail": "Run the Docker container"
}
] ]
} }