diff --git a/README.md b/README.md index 64f105633d..2757641f23 100644 --- a/README.md +++ b/README.md @@ -93,13 +93,13 @@ npm start ```bash # for SQLite docker run -d --name nocodb \ --v /local/path:/usr/app/data/ \ +-v "$(pwd)"/nocodb:/usr/app/data/ \ -p 8080:8080 \ nocodb/nocodb:latest # for MySQL docker run -d --name nocodb-mysql \ --v /local/path:/usr/app/data/ \ +-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" \ @@ -107,7 +107,7 @@ nocodb/nocodb:latest # for PostgreSQL docker run -d --name nocodb-postgres \ --v /local/path:/usr/app/data/ \ +-v "$(pwd)"/nocodb:/usr/app/data/ \ -p 8080:8080 \ -e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1" \ -e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \ @@ -115,7 +115,7 @@ nocodb/nocodb:latest # for MSSQL docker run -d --name nocodb-mssql \ --v /local/path:/usr/app/data/ \ +-v "$(pwd)"/nocodb:/usr/app/data/ \ -p 8080:8080 \ -e NC_DB="mssql://host.docker.internal:1433?u=root&p=password&d=d1" \ -e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \ diff --git a/packages/nc-gui/components/ProjectTreeView.vue b/packages/nc-gui/components/ProjectTreeView.vue index fb42016f6b..118e339d3f 100644 --- a/packages/nc-gui/components/ProjectTreeView.vue +++ b/packages/nc-gui/components/ProjectTreeView.vue @@ -580,7 +580,7 @@ @@ -96,7 +118,6 @@