2015-10-03 02:24:55 +05:30
|
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
if ! test -d ~git/.ssh; then
|
2015-10-12 21:09:40 +05:30
|
|
|
|
mkdir -p ~git/.ssh
|
2015-10-03 02:24:55 +05:30
|
|
|
|
chmod 700 ~git/.ssh
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if ! test -f ~git/.ssh/environment; then
|
|
|
|
|
echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment
|
|
|
|
|
chmod 600 ~git/.ssh/environment
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
cd /app/gogs
|
|
|
|
|
|
2015-10-13 01:58:26 +05:30
|
|
|
|
# Link volumed data with app data
|
2015-10-03 02:24:55 +05:30
|
|
|
|
ln -sf /data/gogs/log ./log
|
|
|
|
|
ln -sf /data/gogs/data ./data
|
|
|
|
|
|
2015-10-13 02:22:20 +05:30
|
|
|
|
# Backward Compatibility with Gogs Container v0.6.15
|
2015-10-13 01:58:26 +05:30
|
|
|
|
ln -sf /data/git /home/git
|
|
|
|
|
|
2015-10-03 02:24:55 +05:30
|
|
|
|
chown -R git:git /data /app/gogs ~git/
|
2015-11-05 00:49:39 +05:30
|
|
|
|
chmod 0755 /data /data/gogs ~git/
|