Baserow Docker#
Baserow is an open-source no-code database tool and an Airtable alternative.
Docker#
docker run \
-d \
--name baserow \
-e BASEROW_PUBLIC_URL=http://localhost \
-v baserow_data:/baserow/data \
-p 80:80 \
-p 443:443 \
--restart unless-stopped \
baserow/baserow:1.35.3
docker run -d --name baserow -e BASEROW_PUBLIC_URL=http://localhost -v baserow_data:/baserow/data -p 80:80 -p 443:443 baserow/baserow:1.35.3
Docker Compose#
services:
baserow:
container_name: baserow
image: baserow/baserow:1.35.3
environment:
BASEROW_PUBLIC_URL: 'http://localhost'
ports:
- "80:80"
- "443:443"
volumes:
- baserow_data:/baserow/data
volumes:
baserow_data:
Runtime Environment#
Screenshots#

