f:: PostgreSQL, NocoDB, Database
Install with Docker // Baserow
With a Postgresql server running on the same host as the Baserow docker container
docker run \
-d \
--name baserow \
--add-host host.docker.internal:host-gateway \
-e BASEROW_PUBLIC_URL=http://localhost \
-e DATABASE_HOST=host.docker.internal \
-e DATABASE_PORT=54321 \
-e DATABASE_NAME=postgres \
-e DATABASE_USER=postgres \
-e DATABASE_PASSWORD=postgres \
--restart unless-stopped \
-v baserow_data:/baserow/data \
-p 80:80 \
-p 443:443 \
baserow/baserow:1.14.0