chore : simplify self-hosting - default to postgres/sqlite

This commit is contained in:
Naveen MR
2024-06-18 09:55:26 +01:00
parent f9f0ba2243
commit fdd6ab93fa
17 changed files with 26 additions and 220 deletions

View File

@@ -146,14 +146,6 @@ NOCODB richiede un database per memorizzare i metadati delle viste dei fogli di
## Docker
#### Esempio con MySQL
```
docker run -d -p 8080:8080 \
-e NC_DB="mysql2://host.docker.internal:3306?u=root&p=password&d=d1" \
-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \
nocodb/nocodb:latest
```
#### Esempio con Postgres
@@ -171,7 +163,7 @@ docker run -d -p 8080:8080 \
git clone https://github.com/nocodb/nocodb
cd nocodb
cd docker-compose
cd mysql or pg
cd pg
docker-compose up -d
```