aboutsummaryrefslogtreecommitdiff
path: root/docker
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-01-07 16:52:04 +0800
committerGitHub <noreply@github.com>2023-01-07 16:52:04 +0800
commit6133415f6d6c81773ec34dcd82383afcad2b0a13 (patch)
tree3cf8bcdc47ec3165cde45e3a25d90f817dd652c4 /docker
parentc53b7e9698524da9a2c80ab2c129ca4e623a25e9 (diff)
mod: bump gorm.io/driver/postgres from 1.4.5 to 1.4.6 (#7299)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Joe Chen <jc@unknwon.io>
Diffstat (limited to 'docker')
-rwxr-xr-xdocker/start.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/start.sh b/docker/start.sh
index 0ac47da9..be075f06 100755
--- a/docker/start.sh
+++ b/docker/start.sh
@@ -6,7 +6,7 @@ create_socat_links() {
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
+ 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}