Inner links
This commit is contained in:
31
.vscode/tasks.json
vendored
31
.vscode/tasks.json
vendored
@ -89,8 +89,8 @@
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerLogin",
|
||||
"command": "docker",
|
||||
"label": "podmanLogin",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"login",
|
||||
@ -99,19 +99,20 @@
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerBuild",
|
||||
"command": "docker",
|
||||
"label": "podmanBuild",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"-t",
|
||||
"kanbn-to-quartz"
|
||||
"kanbn-to-quartz",
|
||||
"."
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerImageList",
|
||||
"command": "docker",
|
||||
"label": "podmanImageList",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"image",
|
||||
@ -120,8 +121,8 @@
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerRun",
|
||||
"command": "docker",
|
||||
"label": "podmanRun",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"run",
|
||||
@ -129,24 +130,24 @@
|
||||
"5001:5001",
|
||||
"--name",
|
||||
"kanbn-to-quartz-api-001",
|
||||
"cb5bbb2e84e7"
|
||||
"a3de856b5731"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerTag",
|
||||
"command": "docker",
|
||||
"label": "podmanTag",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"tag",
|
||||
"b84c1f73de01",
|
||||
"a3de856b5731",
|
||||
"gitea.phares.duckdns.org:443/phares3757/kanbn-to-quartz:latest"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "dockerPush",
|
||||
"command": "docker",
|
||||
"label": "podmanPush",
|
||||
"command": "podman",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"push",
|
||||
|
Reference in New Issue
Block a user