mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2026-01-16 06:11:43 +00:00
baserow
This commit is contained in:
26
apps/database/baserow.md
Normal file
26
apps/database/baserow.md
Normal file
@@ -0,0 +1,26 @@
|
||||
# Baserow
|
||||
|
||||
- Open source no-code database and [Airtable](https://airtable.com) alternative.
|
||||
|
||||
<br>
|
||||
|
||||
- [Homepage](https://baserow.io)
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
version: '3'
|
||||
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
|
||||
```
|
||||
Reference in New Issue
Block a user