- #!/bin/bash
- docker run --rm -it \
- -v "$(pwd):/repo" \
- -v "$HOME/.gitconfig:/home/appuser/.gitconfig:ro" \
- -v "$HOME/.git-credentials:/home/appuser/.git-credentials:ro" \
- -e GEMINI_API_KEY="$GEMINI_API_KEY" \
- -u "$(id -u):$(id -g)" \
- docker.senomas.com/commit:1.0
|