mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-12-03 04:38:47 +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
|