Skip to content

Instantly share code, notes, and snippets.

@Spalaiokostas
Spalaiokostas / docker-compose.yml
Created January 19, 2023 15:08
Postgres Docker container with custom pg_hba.conf
version: '3'
services:
other: # other service that connects to postgres
image: codingpuss/postgres-client
entrypoint: ["psql", "postgres://postgres:test@db:5432", "-l"]
depends_on:
db:
condition: service_healthy
networks:
- backend