Ivan Reshetnikov
b61bd503e6
New features: - Configuration - Postgresql, migrations - OpenID Connect - Sessions
16 lines
313 B
YAML
16 lines
313 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
postgres:
|
|
image: postgres:17
|
|
environment:
|
|
POSTGRES_DB: comfycamp
|
|
POSTGRES_USER: comfycamp
|
|
POSTGRES_PASSWORD: simple-password
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- rustycamp-postgres-dev:/var/lib/postgresql/data
|
|
|
|
volumes:
|
|
rustycamp-postgres-dev:
|