16 lines
367 B
YAML
16 lines
367 B
YAML
services:
|
|
db:
|
|
image: postgres:16
|
|
container_name: uprs_db
|
|
restart: always
|
|
environment:
|
|
POSTGRES_USER: uprs
|
|
POSTGRES_PASSWORD: password123
|
|
POSTGRES_DB: uprs
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
- ./db/migrations:/docker-entrypoint-initdb.d # run initial schema
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
pgdata:
|