kong--kong
16 行
589 B
Bash
可执行文件
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
|