mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-06 21:12:55 +00:00
13 lines
296 B
YAML
13 lines
296 B
YAML
services:
|
|
proxy-postgres:
|
|
image: postgres:17-bookworm
|
|
container_name: proxy-postgres
|
|
environment:
|
|
POSTGRES_HOST_AUTH_METHOD: trust
|
|
POSTGRES_USER: superuser
|
|
POSTGRES_DB: database
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- ./sql:/docker-entrypoint-initdb.d
|