项目文件夹

文件
2026-07-13 12:32:21 +08:00

16 行
589 B
Bash
可执行文件

#!/bin/sh
set -e
if [ -d /workspace ] ; then
redis-server \
--port 6379 \
--tls-port 6380 \
--tls-cert-file /workspace/spec/fixtures/redis/server.crt \
--tls-key-file /workspace/spec/fixtures/redis/server.key \
--tls-cluster no \
--tls-replication no \
--tls-auth-clients no
fi
tail -f /dev/null