| 1234567891011121314151617181920212223242526 |
- #!/bin/sh
- if ! test -d ~git/.ssh; then
- mkdir -p ~git/.ssh
- chmod 700 ~git/.ssh
- fi
- if ! test -f ~git/.ssh/environment; then
- echo "GITOTE_CUSTOM=${GITOTE_CUSTOM}" > ~git/.ssh/environment
- chmod 600 ~git/.ssh/environment
- fi
- cd /app/gitote
- # Link volumed data with app data
- ln -sfn /data/gitote/log ./log
- ln -sfn /data/gitote/data ./data
- ln -sfn /data/git /home/git
- # Only chown for the first time, '/data/gitote/conf/app.ini' must exist inside Docker after installation
- if ! test -d /data/gitote/conf/app.ini; then
- chown -R git:git /data /app/gitote ~git/
- fi
- chmod 0755 /data /data/gitote ~git/
|