this repo has no description
1services:
2 db:
3 image: postgres:17-alpine
4 environment:
5 POSTGRES_USER: postgres
6 POSTGRES_PASSWORD: postgres
7 ports:
8 - "5432:5432"
9 volumes:
10 - pgdata:/var/lib/postgresql/data
11 healthcheck:
12 test: ["CMD-SHELL", "pg_isready -U postgres"]
13 interval: 2s
14 timeout: 5s
15 retries: 5
16
17volumes:
18 pgdata: