From f370f68dbdf1839e15ef9750ff4082c3988c3aee Mon Sep 17 00:00:00 2001 From: yeti Date: Fri, 25 Apr 2025 07:09:53 +0100 Subject: [PATCH] fix(ssh): correct gitconfig file name --- ssh_router.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssh_router.sh b/ssh_router.sh index 42333de..fdac323 100755 --- a/ssh_router.sh +++ b/ssh_router.sh @@ -83,7 +83,7 @@ start_container_if_needed() { --label auto-cleanup=true \ -v "${XDG_RUNTIME_DIR}"/podman/podman.sock:/run/podman/podman.sock \ -v /home/infilytics/data/"$WORKSPACE":/app \ - -v /home/infilytics/secrets/"$WORKSPACE"/.gitconfig:/home/"$DEV_USER"/.gitconfig:ro \ + -v /home/infilytics/secrets/"$WORKSPACE"/gitconfig:/home/"$DEV_USER"/.gitconfig:ro \ -v /home/infilytics/secrets/"$WORKSPACE"/id_ed25519:/opt/secure/ssh/id_ed25519:ro \ -v /home/infilytics/secrets/"$WORKSPACE"/id_ed25519.pub:/opt/secure/ssh/id_ed25519.pub:ro \ --entrypoint "/home/$DEV_USER/start.sh" \