comfycamp/docker-compose.yml
Ivan Reshetnikov b61bd503e6
Add users
New features:
- Configuration
- Postgresql, migrations
- OpenID Connect
- Sessions
2024-11-01 15:21:55 +05:00

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: