mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 21:48:59 +00:00
16 lines
339 B
YAML
16 lines
339 B
YAML
version: "2.1"
|
|
|
|
services:
|
|
pg96:
|
|
image: postgres:15
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: password
|
|
ports:
|
|
- 5432:5432
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|