comfycamp/docker-compose.yml

17 lines
313 B
YAML
Raw Permalink Normal View History

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: