Skip to content

Instantly share code, notes, and snippets.

View alexandermalyga's full-sized avatar

Alexander Malyga alexandermalyga

View GitHub Profile
services:
postgres:
image: postgres:17
environment:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
healthcheck:
test: [ "CMD-SHELL", "pg_isready -U postgres" ]
interval: 2s