Files
hackathon-opti-1a67c9077937…/backend/docker-compose.yml
2026-05-22 15:27:58 -06:00

16 lines
308 B
YAML

version: '3.8'
services:
postgres-db:
image: postgres:15.3
restart: always
environment:
POSTGRES_USER: ${POSTGRES_USER}
POSTGRES_DB: ${POSTGRES_DB}
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
volumes:
- ./postgres:/var/lib/postgresql/data
ports:
- 5433:5432