feature/ssh-server (#1)
All checks were successful
/ ssh-client (push) Successful in 10s
/ ssh-server (push) Successful in 10s

Co-authored-by: Márcio Fernandes <marcio.fernandes@outlook.pt>
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
2025-09-07 13:50:18 +00:00
parent ea24e0e41a
commit ce1d7a749a
23 changed files with 727 additions and 10 deletions

26
docker/ssh-server/.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "debug",
"type": "shell",
"command": "RUN_ENV=dev ./scripts/run-dev.sh",
"problemMatcher": [],
"detail": "Runs the container with environment from .env"
},
{
"label": "build: debug",
"type": "shell",
"command": "BUILD_ENV=dev ./scripts/build.sh",
"problemMatcher": [],
"detail": "Builds docker image with debug requirements"
},
{
"label": "build: production",
"type": "shell",
"command": "./scripts/build.sh",
"problemMatcher": [],
"detail": "Builds docker image for productions"
}
]
}