setup-redis/start-redis.sh

6 lines
103 B
Bash

#!/bin/sh
REDIS_VERSION=$1
docker run --name redis --publish 6379:6379 --detach redis:$REDIS_VERSION