|
|
|
@ -6,13 +6,27 @@ x-uffizzi:
|
|
|
|
|
port: 8080 |
|
|
|
|
|
|
|
|
|
services: |
|
|
|
|
root_db: |
|
|
|
|
postgres: |
|
|
|
|
image: postgres |
|
|
|
|
restart: always |
|
|
|
|
environment: |
|
|
|
|
POSTGRES_PASSWORD: password |
|
|
|
|
POSTGRES_USER: postgres |
|
|
|
|
POSTGRES_DB: root_db |
|
|
|
|
mssql: |
|
|
|
|
image: "mcr.microsoft.com/mssql/server:2017-latest" |
|
|
|
|
restart: always |
|
|
|
|
environment: |
|
|
|
|
ACCEPT_EULA: "Y" |
|
|
|
|
SA_PASSWORD: Password123. |
|
|
|
|
mysql: |
|
|
|
|
environment: |
|
|
|
|
MYSQL_DATABASE: root_db |
|
|
|
|
MYSQL_PASSWORD: password |
|
|
|
|
MYSQL_ROOT_PASSWORD: password |
|
|
|
|
MYSQL_USER: noco |
|
|
|
|
image: "mysql:5.7" |
|
|
|
|
restart: always |
|
|
|
|
nocodb: |
|
|
|
|
image: "${NOCODB_IMAGE}" |
|
|
|
|
ports: |
|
|
|
@ -21,4 +35,4 @@ services:
|
|
|
|
|
environment: |
|
|
|
|
NC_DB: "pg://localhost:5432?u=postgres&p=password&d=root_db" |
|
|
|
|
NC_ADMIN_EMAIL: admin@nocodb.com |
|
|
|
|
NC_ADMIN_PASSWORD: password |
|
|
|
|
NC_ADMIN_PASSWORD: password |
|
|
|
|