20 lines
400 B
YAML
20 lines
400 B
YAML
services:
|
|
postgres:
|
|
image: "postgres:15.2-alpine"
|
|
environment:
|
|
- POSTGRES_USER
|
|
- POSTGRES_PASSWORD
|
|
- POSTGRES_DB
|
|
ports:
|
|
- "5432:5432"
|
|
pg_proxy:
|
|
image: ghcr.io/neondatabase/wsproxy:latest
|
|
environment:
|
|
APPEND_PORT: "postgres:5432"
|
|
ALLOW_ADDR_REGEX: ".*"
|
|
LOG_TRAFFIC: "true"
|
|
ports:
|
|
- "5433:80"
|
|
depends_on:
|
|
- postgres
|