diff --git a/start-redis.sh b/start-redis.sh index b57211e..2dc6a27 100644 --- a/start-redis.sh +++ b/start-redis.sh @@ -1,3 +1,5 @@ #!/bin/sh -docker run --name redis --publish 6379:6379 --detach redis:$1 +REDIS_VERSION=$1 + +docker run --name redis --publish 6379:6379 --detach redis:$REDIS_VERSION