Added convertx and nocodb
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
version: '2.1'
|
||||
services:
|
||||
nocodb:
|
||||
depends_on:
|
||||
root_db:
|
||||
condition: service_healthy
|
||||
environment:
|
||||
NC_DB: "pg://root_db:5432?u=frxcKozq3RVsSnb7SFY5Jc86Dm2bdQHAfLAW63mjKqsNCoZDLUy84MPRDmJ4ExbJ&p=pZSc4HmWrcnFQxgxcTsPMBHBvvs9D3q5UzrU54JeqkRBheN8bPvfgpKJEhCRcf3d&d=root_db"
|
||||
image: "nocodb/nocodb:latest"
|
||||
ports:
|
||||
- "8080:8080"
|
||||
restart: always
|
||||
volumes:
|
||||
- "/data/app:/usr/app/data"
|
||||
root_db:
|
||||
environment:
|
||||
POSTGRES_DB: root_db
|
||||
POSTGRES_PASSWORD: pZSc4HmWrcnFQxgxcTsPMBHBvvs9D3q5UzrU54JeqkRBheN8bPvfgpKJEhCRcf3d
|
||||
POSTGRES_USER: frxcKozq3RVsSnb7SFY5Jc86Dm2bdQHAfLAW63mjKqsNCoZDLUy84MPRDmJ4ExbJ
|
||||
healthcheck:
|
||||
interval: 10s
|
||||
retries: 10
|
||||
test: "pg_isready -U \"$$POSTGRES_USER\" -d \"$$POSTGRES_DB\""
|
||||
timeout: 2s
|
||||
image: postgres:16.6
|
||||
restart: always
|
||||
volumes:
|
||||
- "/data/pg:/var/lib/postgresql/data"
|
||||
Reference in New Issue
Block a user