Browse Source

Add other DBs to uffizzi preview

pull/4605/head
Vibhav Bobade 2 years ago
parent
commit
eb9c2ee2ba
  1. 18
      .github/uffizzi/docker-compose.uffizzi.yml

18
.github/uffizzi/docker-compose.uffizzi.yml

@ -6,13 +6,27 @@ x-uffizzi:
port: 8080 port: 8080
services: services:
root_db: postgres:
image: postgres image: postgres
restart: always restart: always
environment: environment:
POSTGRES_PASSWORD: password POSTGRES_PASSWORD: password
POSTGRES_USER: postgres POSTGRES_USER: postgres
POSTGRES_DB: root_db 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: nocodb:
image: "${NOCODB_IMAGE}" image: "${NOCODB_IMAGE}"
ports: ports:
@ -21,4 +35,4 @@ services:
environment: environment:
NC_DB: "pg://localhost:5432?u=postgres&p=password&d=root_db" NC_DB: "pg://localhost:5432?u=postgres&p=password&d=root_db"
NC_ADMIN_EMAIL: admin@nocodb.com NC_ADMIN_EMAIL: admin@nocodb.com
NC_ADMIN_PASSWORD: password NC_ADMIN_PASSWORD: password

Loading…
Cancel
Save