From b603e3d6fb72c31abfba28a933fd4043fa005072 Mon Sep 17 00:00:00 2001 From: Naveen MR Date: Tue, 18 Jun 2024 10:09:14 +0100 Subject: [PATCH 1/3] chore : simplify self-hosting - default to postgres/sqlite --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 08fc2f6a02..e7b2f5ca45 100644 --- a/README.md +++ b/README.md @@ -79,17 +79,17 @@ docker run -d --name nocodb-postgres \ -e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \ nocodb/nocodb:latest -# with SQLite +# with SQLite : +## If `/usr/app/data/` is not mounted and containers are recreated - data will be LOST! docker run -d --name nocodb \ -v "$(pwd)"/nocodb:/usr/app/data/ \ -p 8080:8080 \ nocodb/nocodb:latest -> If `/usr/app/data/` is not mounted and containers are recreated - data will be LOST! +``` ## Binaries - Binaries are only for quick try or testing purposes and not recommended for production use. - -```bash +``` # MacOS (arm64) curl http://get.nocodb.com/macos-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb @@ -111,7 +111,6 @@ iwr http://get.nocodb.com/win-arm64.exe -o Noco-win-arm64.exe .\Noco-win-arm64.exe ``` - ## Docker Compose We provide different docker-compose.yml files under [this directory](https://github.com/nocodb/nocodb/tree/master/docker-compose). Here are some examples. From 37bc601f58967a325f1e591811deda2091367b3e Mon Sep 17 00:00:00 2001 From: Naveen MR Date: Tue, 18 Jun 2024 10:10:50 +0100 Subject: [PATCH 2/3] chore : simplify self-hosting - default to postgres/sqlite --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e7b2f5ca45..ca51602274 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,7 @@ docker run -d --name nocodb \ -p 8080:8080 \ nocodb/nocodb:latest ``` + ## Binaries - Binaries are only for quick try or testing purposes and not recommended for production use. From e665e65ad9ed9d420b7136f9e22c2522376b7d2f Mon Sep 17 00:00:00 2001 From: Naveen MR Date: Tue, 18 Jun 2024 10:13:29 +0100 Subject: [PATCH 3/3] chore : simplify self-hosting - default to postgres/sqlite --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ca51602274..bb171fda34 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,6 @@ docker run -d --name nocodb \ nocodb/nocodb:latest ``` - ## Binaries - Binaries are only for quick try or testing purposes and not recommended for production use. ```