9 lines
130 B
Bash
9 lines
130 B
Bash
#!/usr/bin/env bash
|
|
|
|
|
|
docker run \
|
|
-d \
|
|
--name redis \
|
|
-p 16379:6379 \
|
|
-e ALLOW_EMPTY_PASSWORD=yes \
|
|
bitnami/redis:6.2.7 |