cloud-redis-container/scripts/entrypoint.sh

6 lines
116 B
Bash
Raw Normal View History

2023-04-11 17:22:32 +00:00
#!/bin/bash
echo "Starting Redis..."
sleep 2
2023-04-11 17:22:32 +00:00
/usr/bin/redis-server /etc/redis.conf
tail -f /var/log/redis.log
exit 0