mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 06:45:41 +00:00
update : refactor auto-upstall and installation methods
This commit is contained in:
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>     or<br>    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>    `-v ""$(pwd)"":/nocodb:/usr/app/data/ \`<br>    `-p 8080:8080 \`<br>    `nocodb/nocodb:latest` | Placeholder text |
|
||||
| 🐳 Docker (with Postgres 🐘) | `docker run -d --name nocodb-postgres \`<br>    `-v "${pwd}"/nocodb:/usr/app/data/ \`<br>    `-p 8080:8080 \`<br>    `-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1" \`<br>    `-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \`<br>    `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>    `-v ""$(pwd)"":/nocodb:/usr/app/data/ \`<br>    `-p 8080:8080 \`<br>    `nocodb/nocodb:latest` |
|
||||
| 🐳 Docker (with Postgres 🐘) | `docker run -d --name nocodb-postgres \`<br>    `-v "${pwd}"/nocodb:/usr/app/data/ \`<br>    `-p 8080:8080 \`<br>    `-e NC_DB="pg://host.docker.internal:5432?u=root&p=password&d=d1" \`<br>    `-e NC_AUTH_JWT_SECRET="569a1821-0a93-45e8-87ab-eb857f20a010" \`<br>    `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)
|
||||
|
||||
Reference in New Issue
Block a user