598a4c47e9
- 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
16 lines
309 B
YAML
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:
|