22 lines
385 B
YAML
22 lines
385 B
YAML
services:
|
|
db:
|
|
container_name: teastream-db
|
|
image: postgres:15.2
|
|
restart: always
|
|
environment:
|
|
- POSTGRES_USER=${POSTGRES_USER}
|
|
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
|
|
ports:
|
|
- 5433:5432
|
|
volumes:
|
|
- postgres_data:/var/lib/posgresql/data
|
|
networks:
|
|
- teastream-backend
|
|
|
|
|
|
volumes:
|
|
postgres_data:
|
|
|
|
networks:
|
|
teastream-backend:
|