entrypoint.sh 229 B

1234567891011121314151617
  1. #!/bin/bash
  2. set -e
  3. dever_start()
  4. {
  5. redis-server &
  6. cd /usr/local/redislive/src/
  7. ./redis-monitor.py --duration=120 > /dev/null &
  8. ./redis-live.py > /dev/null &
  9. }
  10. if [ "$1" = 'redis' ]; then
  11. d=6379
  12. dever_start $d
  13. fi
  14. exec sh