Nocodb Installation

https://docs.nocodb.com/getting-started/installation

Built in SQLITE db for testing
docker run -d --name nocodb -p 8080:8080 nocodb/nocodb

Production setup to connect external MySQL

docker run -d -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" \
    nocodb/nocodb

Better use docker-compose command to directly start with the yml in github

git clone https://github.com/nocodb/nocodb
cd docker-compose
cd mysql
docker-compose up