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.
24 lines
489 B
24 lines
489 B
version: '3' |
|
|
|
x-uffizzi: |
|
ingress: |
|
service: nocodb |
|
port: 8080 |
|
|
|
services: |
|
postgres: |
|
image: postgres |
|
restart: always |
|
environment: |
|
POSTGRES_PASSWORD: password |
|
POSTGRES_USER: postgres |
|
POSTGRES_DB: root_db |
|
nocodb: |
|
image: "${NOCODB_IMAGE}" |
|
ports: |
|
- "8080:8080" |
|
restart: always |
|
environment: |
|
NC_DB: "pg://localhost:5432?u=postgres&p=password&d=root_db" |
|
NC_ADMIN_EMAIL: admin@nocodb.com |
|
NC_ADMIN_PASSWORD: password
|
|
|