ssh server alpha
Some checks failed
/ build-docker-image (push) Failing after 23s

This commit is contained in:
2025-09-06 23:32:31 +00:00
parent ea24e0e41a
commit f6e6d4dba9
20 changed files with 643 additions and 4 deletions

27
docker/ssh-server/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,27 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Remote Attach",
"type": "debugpy",
"request": "attach",
"connect": {
"host": "localhost",
"port": 5678
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/app",
"remoteRoot": "/app"
}
],
"justMyCode": false,
"preLaunchTask": "debug"
}
]
}

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"
}
]
}