aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
Diffstat (limited to 'docker')
-rw-r--r--docker/runtime/backup-init.sh4
-rw-r--r--docker/runtime/backup-rotator.sh2
-rwxr-xr-xdocker/s6/.s6-svscan/finish2
-rwxr-xr-xdocker/s6/crond/run1
-rwxr-xr-xdocker/s6/gogs/run3
-rwxr-xr-xdocker/s6/gogs/setup6
-rwxr-xr-xdocker/s6/openssh/run1
-rwxr-xr-xdocker/s6/syslogd/run1
-rwxr-xr-xdocker/start.sh19
9 files changed, 24 insertions, 15 deletions
diff --git a/docker/runtime/backup-init.sh b/docker/runtime/backup-init.sh
index 07298c5d..f4e21a1b 100644
--- a/docker/runtime/backup-init.sh
+++ b/docker/runtime/backup-init.sh
@@ -30,7 +30,9 @@ parse_generate_cron_expression() {
CRON_EXPR_DAYS="*"
CRON_EXPR_MONTHS="*"
+ # shellcheck disable=SC2001
TIME_INTERVAL=$(echo "${BACKUP_INTERVAL}" | sed -e 's/[hdM]$//')
+ # shellcheck disable=SC2001
TIME_UNIT=$(echo "${BACKUP_INTERVAL}" | sed -e 's/^[0-9]\+//')
if [ "${TIME_UNIT}" = "h" ]; then
@@ -74,7 +76,9 @@ parse_generate_cron_expression() {
parse_generate_retention_expression() {
FIND_TIME_EXPR='mtime'
+ # shellcheck disable=SC2001
TIME_INTERVAL=$(echo "${BACKUP_RETENTION}" | sed -e 's/[mhdM]$//')
+ # shellcheck disable=SC2001
TIME_UNIT=$(echo "${BACKUP_RETENTION}" | sed -e 's/^[0-9]\+//')
if [ "${TIME_UNIT}" = "m" ]; then
diff --git a/docker/runtime/backup-rotator.sh b/docker/runtime/backup-rotator.sh
index 51665f57..7e882fc0 100644
--- a/docker/runtime/backup-rotator.sh
+++ b/docker/runtime/backup-rotator.sh
@@ -21,7 +21,7 @@ main() {
exit 1
fi
- find "${BACKUP_PATH}/" -type f -name "gogs-backup-*.zip" -${FIND_EXPRESSION} -print -exec rm "{}" +
+ find "${BACKUP_PATH}/" -type f -name "gogs-backup-*.zip" "-${FIND_EXPRESSION}" -print -exec rm "{}" +
}
main "$@"
diff --git a/docker/s6/.s6-svscan/finish b/docker/s6/.s6-svscan/finish
index 3fab7f42..518b5d9b 100755
--- a/docker/s6/.s6-svscan/finish
+++ b/docker/s6/.s6-svscan/finish
@@ -1,5 +1,5 @@
#!/bin/sh
# Cleanup SOCAT services and s6 event folder
-rm -rf $(find /app/gogs/docker/s6/ -name 'event')
+rm -rf "$(find /app/gogs/docker/s6/ -name 'event')"
rm -rf /app/gogs/docker/s6/SOCAT_*
diff --git a/docker/s6/crond/run b/docker/s6/crond/run
index 9aa9fb9f..ada467e1 100755
--- a/docker/s6/crond/run
+++ b/docker/s6/crond/run
@@ -3,6 +3,7 @@
# The default configuration is also calling all the scripts in /etc/periodic/${period}
if test -f ./setup; then
+ # shellcheck disable=SC2039,SC1091
source ./setup
fi
diff --git a/docker/s6/gogs/run b/docker/s6/gogs/run
index edcf49ce..72db3f05 100755
--- a/docker/s6/gogs/run
+++ b/docker/s6/gogs/run
@@ -1,7 +1,8 @@
#!/bin/sh
if test -f ./setup; then
+ # shellcheck disable=SC2039,SC1091
source ./setup
fi
-exec gosu $USER /app/gogs/gogs web
+exec gosu "$USER" /app/gogs/gogs web
diff --git a/docker/s6/gogs/setup b/docker/s6/gogs/setup
index b361495b..bb77aa70 100755
--- a/docker/s6/gogs/setup
+++ b/docker/s6/gogs/setup
@@ -1,16 +1,16 @@
#!/bin/sh
if ! test -d ~git/.ssh; then
- gosu $USER mkdir -p ~git/.ssh
+ gosu "$USER" mkdir -p ~git/.ssh
chmod 700 ~git/.ssh
fi
if ! test -f ~git/.ssh/environment; then
- gosu $USER echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment
+ gosu "$USER" echo "GOGS_CUSTOM=${GOGS_CUSTOM}" > ~git/.ssh/environment
chmod 600 ~git/.ssh/environment
fi
-cd /app/gogs
+cd /app/gogs || exit 1
# Link volumed data with app data
ln -sfn /data/gogs/log ./log
diff --git a/docker/s6/openssh/run b/docker/s6/openssh/run
index 99172aab..d7a538dd 100755
--- a/docker/s6/openssh/run
+++ b/docker/s6/openssh/run
@@ -1,6 +1,7 @@
#!/bin/sh
if test -f ./setup; then
+ # shellcheck disable=SC2039,SC1091
source ./setup
fi
diff --git a/docker/s6/syslogd/run b/docker/s6/syslogd/run
index f7bdbe36..5c3bbefb 100755
--- a/docker/s6/syslogd/run
+++ b/docker/s6/syslogd/run
@@ -1,6 +1,7 @@
#!/bin/sh
if test -f ./setup; then
+ # shellcheck disable=SC2039,SC1091
source ./setup
fi
diff --git a/docker/start.sh b/docker/start.sh
index 77418e18..e10feb20 100755
--- a/docker/start.sh
+++ b/docker/start.sh
@@ -3,17 +3,18 @@
create_socat_links() {
# Bind linked docker container to localhost socket using socat
USED_PORT="3000:22"
- while read NAME ADDR PORT; do
+ while read -r NAME ADDR PORT; do
if test -z "$NAME$ADDR$PORT"; then
continue
elif echo $USED_PORT | grep -E "(^|:)$PORT($|:)" > /dev/null; then
echo "init:socat | Can't bind linked container ${NAME} to localhost, port ${PORT} already in use" 1>&2
else
SERV_FOLDER=/app/gogs/docker/s6/SOCAT_${NAME}_${PORT}
- mkdir -p ${SERV_FOLDER}
+ mkdir -p "${SERV_FOLDER}"
CMD="socat -ls TCP4-LISTEN:${PORT},fork,reuseaddr TCP4:${ADDR}:${PORT}"
- echo -e "#!/bin/sh\nexec $CMD" > ${SERV_FOLDER}/run
- chmod +x ${SERV_FOLDER}/run
+ # shellcheck disable=SC2039
+ echo -e "#!/bin/sh\nexec $CMD" > "${SERV_FOLDER}"/run
+ chmod +x "${SERV_FOLDER}"/run
USED_PORT="${USED_PORT}:${PORT}"
echo "init:socat | Linked container ${NAME} will be binded to localhost on port ${PORT}" 1>&2
fi
@@ -25,18 +26,18 @@ EOT
cleanup() {
# Cleanup SOCAT services and s6 event folder
# On start and on shutdown in case container has been killed
- rm -rf $(find /app/gogs/docker/s6/ -name 'event')
+ rm -rf "$(find /app/gogs/docker/s6/ -name 'event')"
rm -rf /app/gogs/docker/s6/SOCAT_*
}
create_volume_subfolder() {
# Modify the owner of /data dir, make $USER(git) user have permission to create sub-dir in /data.
- chown -R $USER:$USER /data
+ chown -R "$USER:$USER" /data
# Create VOLUME subfolder
for f in /data/gogs/data /data/gogs/conf /data/gogs/log /data/git /data/ssh; do
if ! test -d $f; then
- gosu $USER mkdir -p $f
+ gosu "$USER" mkdir -p $f
fi
done
}
@@ -54,14 +55,14 @@ cleanup
create_volume_subfolder
LINK=$(echo "$SOCAT_LINK" | tr '[:upper:]' '[:lower:]')
-if [ "$LINK" = "false" -o "$LINK" = "0" ]; then
+if [ "$LINK" = "false" ] || [ "$LINK" = "0" ]; then
echo "init:socat | Will not try to create socat links as requested" 1>&2
else
create_socat_links
fi
CROND=$(echo "$RUN_CROND" | tr '[:upper:]' '[:lower:]')
-if [ "$CROND" = "true" -o "$CROND" = "1" ]; then
+if [ "$CROND" = "true" ] || [ "$CROND" = "1" ]; then
echo "init:crond | Cron Daemon (crond) will be run as requested by s6" 1>&2
rm -f /app/gogs/docker/s6/crond/down
/bin/sh /app/gogs/docker/runtime/backup-init.sh "${PUID}"