mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-12-02 12:18:30 +08:00
14 lines
244 B
YAML
14 lines
244 B
YAML
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
|