self-hosted-cookbook/apps/database/baserow.md

26 lines
447 B
Markdown
Raw Normal View History

2022-04-24 22:52:36 +00:00
# Baserow
- Open source no-code database and [Airtable](https://airtable.com) alternative.
<br>
- [Homepage](https://baserow.io)
## docker-compose.yml
```yml
---
services:
baserow:
image: baserow/baserow:latest
container_name: baserow
restart: unless-stopped
environment:
- TZ=Europe/Dublin
- BASEROW_PUBLIC_URL=http://192.168.1.10:3123
ports:
- "3123:80"
volumes:
- ./data:/baserow/data
```