dgiot/.ci/docker-compose-file/docker-compose-redis-single-tcp.yaml

14 lines
244 B
YAML
Raw Normal View History

2021-05-18 14:54:48 +08:00
version: '3.9'
services:
redis_server:
container_name: redis
image: redis:${REDIS_TAG}
command:
- redis-server
- "--bind 0.0.0.0 ::"
- --requirepass public
restart: always
networks:
- emqx_bridge