File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ SHELL_SCRIPTS = $(wildcard _scripts/*.sh) rootfs/bin/boot
1212
1313# The following variables describe the containerized development environment
1414# and other build options
15- DEV_ENV_IMAGE := quay.io/ drycc/go-dev:v0.22.0
15+ DEV_ENV_IMAGE := drycc/go-dev
1616DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1717DEV_ENV_CMD := docker run --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
1818DEV_ENV_CMD_INT := docker run -it --rm -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR} ${DEV_ENV_IMAGE}
Original file line number Diff line number Diff line change 1- FROM redis:5 -alpine
1+ FROM redis:6 -alpine
22
33COPY . /
44
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ REDIS_CONFIG_FILE=/etc/redis/redis.conf
88REDIS_PASSWORD_FILE=/var/run/secrets/drycc/redis/creds/password
99if [ -e $REDIS_PASSWORD_FILE ]; then
1010 REDIS_PASSWORD=" $( cat /var/run/secrets/drycc/redis/creds/password) "
11- if [ ! -z " $REDIS_PASSWORD " ]; then
11+ if [ -n " $REDIS_PASSWORD " ]; then
1212 echo " requirepass $REDIS_PASSWORD " >> $REDIS_CONFIG_FILE
1313 fi
1414fi
You can’t perform that action at this time.
0 commit comments