We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2aac75 commit cbe1d06Copy full SHA for cbe1d06
tools/mike.sh
@@ -0,0 +1,8 @@
1
+#/bin/bash
2
+
3
+DATA_DIR="$(cd "$(dirname "${0}")/.." && pwd)"
4
+GIT_USERNAME="$(git config user.name)"
5
+GIT_EMAIL="$(git config user.email)"
6
+COMMAND="/data/tools/run-in-container/mike.sh '${GIT_USERNAME}' '${GIT_EMAIL}' $1 $2 $3 $4"
7
8
+docker run -v ${DATA_DIR}:/data -p 8000:8000 --rm -it trivadis/mktools bash -c "${COMMAND}"
tools/run-in-container/mike.sh
@@ -0,0 +1,9 @@
+GIT_USERNAME=$1
+GIT_EMAIL=$2
+cd /data
+git config --global user.name "${GIT_USERNAME}"
+git config --global user.email "${GIT_EMAIL}"
9
+mike $3 $4 $5 $6
0 commit comments