mirror of
https://github.com/mozilla/fxa.git
synced 2025-12-28 15:11:24 +00:00
Because: - We are cleaning up stray password even those just used for dev This Commit: - Removes the dev password, fxa123, from source
10 lines
219 B
Bash
Executable File
10 lines
219 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
if [ -z "$REDIS_PASSWORD" ]; then
|
|
REQUIREPASS_ARG="";
|
|
else
|
|
REQUIREPASS_ARG="--requirepass $REDIS_PASSWORD";
|
|
fi
|
|
|
|
docker run --rm --name redis-server --net fxa -p 6379:6379 redis $REQUIREPASS_ARG
|