f4245a996a
- Run database migrations on startup if `RUN_MIGRATIONS=true` - Block public access to deactivated sites with a 503 page, allowing admin/login paths - Add `isSuperAdmin` boolean to session user type in app.d.ts
17 lines
331 B
YAML
17 lines
331 B
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:16-alpine
|
|
container_name: collective-hub-db
|
|
environment:
|
|
POSTGRES_USER: hub_dev
|
|
POSTGRES_PASSWORD: hub_dev_password
|
|
POSTGRES_DB: collective_hub
|
|
ports:
|
|
- '5432:5432'
|
|
volumes:
|
|
- pgdata:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
pgdata:
|