purescript-pg/docker-compose.yml

10 lines
198 B
YAML

version: '3.8'
services:
db:
image: 'postgres:16-bookworm'
volumes:
- './pg:/var/run/postgresql'
environment:
POSTGRES_USER: 'postgres'
POSTGRES_PASSWORD: 'password'