add postgres & an admin UI

This commit is contained in:
Ryan Manseau 2023-03-27 23:17:04 -07:00
parent 01000ccb6c
commit 9f80e6e0ea

View File

@ -93,6 +93,23 @@ services:
- elasticsearch - elasticsearch
restart: unless-stopped restart: unless-stopped
db:
image: postgres
restart: unless-stopped
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# ports:
# - 5432:5432
volumes:
- ./postgres/data:/var/lib/postgresql/data
adminer:
image: adminer
restart: unless-stopped
ports:
- 8080:8080
networks: networks:
elk: elk:
driver: bridge driver: bridge