@ -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. |