Add ~/.ssh mount to pegleg.sh

New Pegleg supports feature of pulling git repos.
This mount passes SSH keys to the container.

Change-Id: I6606ac44469099d8560e89482bba98d7bb9c8dbf
This commit is contained in:
Kaspars Skels 2018-09-05 14:36:24 -05:00
parent 6a7c61e094
commit ac6297eae6
1 changed files with 2 additions and 1 deletions

View File

@ -13,9 +13,10 @@ echo
# host OS
container_workspace_path='/workspace'
docker run --rm -t \
docker run --rm -it \
--net=host \
--workdir="$container_workspace_path" \
-v "${HOME}/.ssh:${container_workspace_path}/.ssh" \
-v "${WORKSPACE}:$container_workspace_path" \
"${IMAGE}" \
pegleg "${@}"