mirror of
https://gitee.com/dgiiot/dgiot.git
synced 2024-12-04 21:27:39 +08:00
16 lines
285 B
YAML
16 lines
285 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
pgsql_server:
|
|
container_name: pgsql
|
|
image: postgres:${PGSQL_TAG}
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: public
|
|
POSTGRES_USER: root
|
|
POSTGRES_DB: mqtt
|
|
ports:
|
|
- "5432:5432"
|
|
networks:
|
|
- emqx_bridge
|