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

@@ -29,18 +29,7 @@ nocodb/nocodb:latest
```
</TabItem>
<TabItem value="mysql" label="MySQL">
```bash
docker run -d --name nocodb-mysql \
-v "$(pwd)"/nocodb:/usr/app/data/ \
-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
```
</TabItem>
<TabItem value="postgres" label="Postgres">
```bash