mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-02 01:07:46 +00:00
18 lines
445 B
YAML
18 lines
445 B
YAML
version: "2.2"
|
|
|
|
services:
|
|
pg147:
|
|
image: postgres:14.7
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: password
|
|
ports:
|
|
- 5432:5432
|
|
volumes:
|
|
- ../../../packages/nocodb/tests/pg-sakila-db:/docker-entrypoint-initdb.d
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready -U postgres"]
|
|
interval: 10s
|
|
timeout: 5s
|
|
retries: 5
|