We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 507b06b commit 557d48fCopy full SHA for 557d48f
start-redis.sh
@@ -15,11 +15,11 @@ fi
15
16
DOCKER_RUN_ARGS="--name $REDIS_CONTAINER_NAME --publish $REDIS_PORT:6379 --detach $REDIS_IMAGE:$REDIS_VERSION"
17
18
-if [ -n "$REDIS_PASSWORD" ] ; then
+if [ -n "$REDIS_PASSWORD" ]; then
19
DOCKER_RUN_ARGS="$DOCKER_RUN_ARGS redis-server --requirepass $REDIS_PASSWORD"
20
fi
21
22
-if [ "$REDIS_REMOVE_CONTAINER" == "true" ] ; then
+if [ "$REDIS_REMOVE_CONTAINER" == "true" ]; then
23
DOCKER_RUN_ARGS="$DOCKER_RUN_ARGS --rm"
24
25
0 commit comments