Rename package

This commit is contained in:
Alex Selimov 2026-03-19 15:52:48 -04:00
parent 17d0709ed6
commit a2c678cdba
6 changed files with 117 additions and 6 deletions

View file

@ -12,5 +12,17 @@ services:
- ./db/migrations:/docker-entrypoint-initdb.d # run initial schema
ports:
- "5432:5432"
app:
build: .
container_name: uprs_app
restart: always
environment:
POSTGRES_CONNECTION_STRING: postgres://uprs:password123@db:5432/uprs
ports:
- "3000:3000"
depends_on:
- db
volumes:
pgdata: