Browse Source

update : refactor auto-upstall and installation methods

pull/9424/head
Naveen MR 3 months ago
parent
commit
9c17d5a673
  1. 23
      README.md

23
README.md

@ -76,18 +76,17 @@ Auto-upstall is a single command that : 🕊
> install.nocodb.com/noco.sh script can be found [here in our github](https://raw.githubusercontent.com/nocodb/nocodb/develop/docker-compose/setup-script/noco.sh)
## Installation Methods
| Install Method | Command to install | Comments |
|------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------|
| 🚀 Auto Upstall <br>&emsp;&emsp;&emsp;&emsp;&emsp;or<br>&emsp;&emsp;&emsp; 1-cmd setup | `bash <(curl -sSL http://install.nocodb.com/noco.sh) <(mktemp)` | install.nocodb.com/noco.sh script [is here in our github](https://raw.githubusercontent.com/nocodb/nocodb/develop/docker-compose/setup-script/noco.sh) |
| 🐳 Docker (with SQLite) | `docker run -d --name nocodb \`<br> &emsp;&emsp;&emsp;`-v ""$(pwd)"":/nocodb:/usr/app/data/ \`<br> &emsp;&emsp;&emsp;`-p 8080:8080 \`<br> &emsp;&emsp;&emsp;`nocodb/nocodb:latest` | Placeholder text |
| 🐳 Docker (with Postgres 🐘) | `docker run -d --name nocodb-postgres \`<br> &emsp;&emsp;&emsp;`-v "${pwd}"/nocodb:/usr/app/data/ \`<br> &emsp;&emsp;&emsp;`-p 8080:8080 \`<br> &emsp;&emsp;&emsp;`-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1" \`<br> &emsp;&emsp;&emsp;`-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \`<br> &emsp;&emsp;&emsp;`nocodb/nocodb:latest` | Please point NC_DB to a fresh postgres database. |
| 🍏 MacOS arm64 (Binary) | `curl http://get.nocodb.com/macos-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb` | Only for quick trial. Not recommended for production. |
| 🍏 MacOS x64 (Binary) | `curl http://get.nocodb.com/macos-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` | Only for quick trial. Not recommended for production. |
| 🐧 Linux arm64 (Binary) | `curl http://get.nocodb.com/linux-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb` | Only for quick trial. Not recommended for production. |
| 🐧 Linux x64 (Binary) | `curl http://get.nocodb.com/linux-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` | Only for quick trial. Not recommended for production. |
| 🪟 Windows arm64 (Binary) | `iwr http://get.nocodb.com/win-arm64.exe -o Noco-win-arm64.exe && .\Noco-win-arm64.exe` | Only for quick trial. Not recommended for production. |
| 🪟 Windows x64 (Binary) | `iwr http://get.nocodb.com/win-x64.exe -o Noco-win-x64.exe && .\Noco-win-x64.exe` | Only for quick trial. Not recommended for production. |
| Install Method | Command to install |
|------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 🚀 Auto Upstall | `bash <(curl -sSL http://install.nocodb.com/noco.sh) <(mktemp)` |
| 🐳 Docker (with SQLite) | `docker run -d --name nocodb \`<br> &emsp;&emsp;&emsp;`-v ""$(pwd)"":/nocodb:/usr/app/data/ \`<br> &emsp;&emsp;&emsp;`-p 8080:8080 \`<br> &emsp;&emsp;&emsp;`nocodb/nocodb:latest` |
| 🐳 Docker (with Postgres 🐘) | `docker run -d --name nocodb-postgres \`<br> &emsp;&emsp;&emsp;`-v "${pwd}"/nocodb:/usr/app/data/ \`<br> &emsp;&emsp;&emsp;`-p 8080:8080 \`<br> &emsp;&emsp;&emsp;`-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1" \`<br> &emsp;&emsp;&emsp;`-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \`<br> &emsp;&emsp;&emsp;`nocodb/nocodb:latest` |
| 🍏 MacOS arm64 (Binary) | `curl http://get.nocodb.com/macos-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb` |
| 🍏 MacOS x64 (Binary) | `curl http://get.nocodb.com/macos-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` |
| 🐧 Linux arm64 (Binary) | `curl http://get.nocodb.com/linux-arm64 -o nocodb -L && chmod +x nocodb && ./nocodb` |
| 🐧 Linux x64 (Binary) | `curl http://get.nocodb.com/linux-x64 -o nocodb -L && chmod +x nocodb && ./nocodb` |
| 🪟 Windows arm64 (Binary) | `iwr http://get.nocodb.com/win-arm64.exe -o Noco-win-arm64.exe && .\Noco-win-arm64.exe` |
| 🪟 Windows x64 (Binary) | `iwr http://get.nocodb.com/win-x64.exe -o Noco-win-x64.exe && .\Noco-win-x64.exe` |
> When running locally access nocodb by visiting: [http://localhost:8080/dashboard](http://localhost:8080/dashboard)

Loading…
Cancel
Save