Files
Atay-Makhzan/docker/s6/gogs/setup
T

24 lines
497 B
Bash
Raw Normal View History

2015-10-02 21:54:55 +01:00
#!/bin/sh
if ! test -d ~git/.ssh; then
2015-10-12 16:39:40 +01:00
mkdir -p ~git/.ssh
2015-10-02 21:54:55 +01:00
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
# Link volumed data with app data
2015-10-02 21:54:55 +01:00
ln -sf /data/gogs/log ./log
ln -sf /data/gogs/data ./data
# Backward Compatibility with Gogs Container v0.6.15
ln -sf /data/git /home/git
2015-10-02 21:54:55 +01:00
chown -R git:git /data /app/gogs ~git/
chmod 0755 /data /data/gogs ~git/