Files
ogb-solutions/docker-compose.yml
T
oscar 598a4c47e9 feat: configure PostgreSQL database and fix TypeScript types
- Updated docker-compose.yml to use postgres:17-alpine
- Database credentials: ogb/ogb_dev_password/ogb_web
- Updated .env.example with correct PostgreSQL connection string
- Fixed plugins/index.ts to include Project type in SEO generateTitle/generateURL
- Changed site title from 'Payload Website Template' to 'OGB Solutions'
- Database ready for dev server startup
2025-11-18 08:55:49 +01:00

16 lines
309 B
YAML

services:
postgres:
image: postgres:17-alpine
environment:
POSTGRES_USER: ogb
POSTGRES_PASSWORD: ogb_dev_password
POSTGRES_DB: ogb_web
ports:
- '5432:5432'
volumes:
- postgres_data:/var/lib/postgresql/data
restart: unless-stopped
volumes:
postgres_data: