- Added CompanyRecommendation system - Made company pages public (removed @login_required) - CSS refactor: inline styles instead of external fluent CSS - Added release notes page - Added admin recommendations panel - Company logos (webp format) - Docker compose configuration Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
18 lines
423 B
YAML
18 lines
423 B
YAML
version: '3.8'
|
|
services:
|
|
postgres:
|
|
image: postgres:15
|
|
container_name: nordabiz-postgres
|
|
environment:
|
|
POSTGRES_DB: nordabiz
|
|
POSTGRES_USER: nordabiz_app
|
|
POSTGRES_PASSWORD: dev_password
|
|
ports:
|
|
- "5433:5432" # Port 5433 lokalnie (unika kolizji z innymi projektami)
|
|
volumes:
|
|
- nordabiz_pgdata:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
nordabiz_pgdata:
|