Inner links

This commit is contained in:
2025-02-02 14:12:21 -07:00
parent 3c4e465084
commit c64143f320
3 changed files with 49 additions and 21 deletions

31
.vscode/tasks.json vendored
View File

@ -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",