|
version: '3.9'
|
|
|
|
services:
|
|
redis_sentinel_server:
|
|
container_name: redis-sentinel
|
|
image: redis:${REDIS_TAG}
|
|
volumes:
|
|
- ./redis/:/data/conf
|
|
command: bash -c "/bin/bash /data/conf/redis.sh --node sentinel && tail -f /var/log/redis-server.log"
|
|
networks:
|
|
- emqx_bridge
|