.
All checks were successful
/ ssh-client-container (push) Successful in 9s
/ ssh-server-container (push) Successful in 20s

This commit is contained in:
2025-09-07 00:45:27 +00:00
parent d94fe8c109
commit ed5c86ffe6
2 changed files with 2 additions and 2 deletions

View File

@@ -3,7 +3,7 @@ import yaml
def is_debugging(): return os.getenv("CONFIGURATION") == "Debug" def is_debugging(): return os.getenv("CONFIGURATION") == "Debug"
file_path="/etc/app/config.yaml" file_path="/etc/app/config/config.yaml"
config=None config=None
def config_exits(): def config_exits():

View File

@@ -33,7 +33,7 @@ podman container run -d --rm \
-p 2222:22 \ -p 2222:22 \
-p 5678:5678 \ -p 5678:5678 \
-v ./app:/app \ -v ./app:/app \
-v ./local/config:/etc/app \ -v ./local/config:/etc/app/config \
-v ./local/server-certs:/etc/ssh/certs \ -v ./local/server-certs:/etc/ssh/certs \
${CONTAINER_TAG} ${CONTAINER_TAG}