6 lines
131 B
Bash
6 lines
131 B
Bash
|
#!/bin/sh
|
||
|
docker run --name redis_django \
|
||
|
-p 6379:6379/tcp \
|
||
|
-e ALLOW_EMPTY_PASSWORD=yes \
|
||
|
-d bitnami/redis:latest
|