fa8b0a29ea
Do not use Docker for running a Redis server in the test-sim that we check that Satellite can still operate when Redis is unavailable because we have to run this test in Jenkins and we don't want to empower a container to be able to connect to the Docker socket of the host machine for running sibling containers. Change-Id: I6180e8ed804968c8ccb0783ed334acab38af9a0f
10 lines
246 B
Bash
Executable File
10 lines
246 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
|
|
export STORJ_REDIS_PORT=7379
|
|
|
|
# shellcheck source=/postgres-dev.sh
|
|
source "${SCRIPTDIR}/postgres-dev.sh"
|
|
|
|
"${SCRIPTDIR}/test-sim-redis-up-and-down.sh"
|