Updated docker-compose.yml to support the changes
This commit is contained in:
parent
0866af8db5
commit
b4aa61b54e
|
@ -1,7 +1,7 @@
|
|||
volumes:
|
||||
prometheus_data:
|
||||
grafana_data:
|
||||
redis_data:
|
||||
postgres_data:
|
||||
|
||||
services:
|
||||
prometheus:
|
||||
|
@ -42,13 +42,18 @@ services:
|
|||
networks:
|
||||
- mesh-bridge
|
||||
|
||||
redis:
|
||||
image: redis:7
|
||||
postgres:
|
||||
image: postgres:13.3
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- mesh-bridge
|
||||
volumes:
|
||||
- redis_data:/data
|
||||
- postgres_data:/var/lib/postgresql/data
|
||||
- ./docker/postgres/init.sql:/docker-entrypoint-initdb.d/init.sql
|
||||
environment:
|
||||
POSTGRES_USER: "postgres"
|
||||
POSTGRES_PASSWORD: "postgres"
|
||||
POSTGRES_DB: "meshtastic"
|
||||
|
||||
networks:
|
||||
mesh-bridge:
|
||||
|
|
Loading…
Reference in a new issue