mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
440 B
18 lines
440 B
2 years ago
|
version: "2.1"
|
||
|
|
||
|
services:
|
||
|
pg96:
|
||
|
image: postgres:9.6
|
||
|
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
|