* 'master' of https://github.com/tborychowski/self-hosted-cookbook:
  baserow
This commit is contained in:
Dziad Borowy 2022-04-27 09:54:59 +01:00
commit 34d8404dce
3 changed files with 80 additions and 2 deletions

View File

@ -107,8 +107,8 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Database
- [baserow](https://baserow.io) 🔗 - Open source no-code database and [Airtable](https://airtable.com) alternative.
- [SeaTable](https://seatable.io/en/) 🔗 - Simple like Excel, powerful like a database (free up to 3 users).
- [baserow](apps/database/baserow.md)
- [SeaTable](apps/database/seatable.md)
- [Dataspread](https://dataspread.github.io) 🔗 - combines the intuitiveness and flexibility of spreadsheets and the scalability and power of databases.
- [Hue](https://docs.gethue.com/quickstart/) 🔗 - open source SQL Assistant for Databases.

26
apps/database/baserow.md Normal file
View 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
```

52
apps/database/seatable.md Normal file
View File

@ -0,0 +1,52 @@
# SeaTable
- Simple like Excel, powerful like a database (free up to 3 users).
- Docker container doesn't work (as per the link below)
<br>
- [Homepage](https://seatable.io/)
- [Docs](https://manual.seatable.io/docker/Developer-Edition/Deploy%20SeaTable-DE%20with%20Docker/#installing-docker-compose)
## docker-compose.yml
That this didn't work for me at the time of testing.
```yml
---
version: '2.0'
services:
db:
image: mariadb:10.5
container_name: seatable-mysql
environment:
- MYSQL_ROOT_PASSWORD=PASSWORD
- MYSQL_LOG_CONSOLE=true
volumes:
- ./db:/var/lib/mysql
memcached:
image: memcached:1.5.6
container_name: seatable-memcached
entrypoint: memcached -m 256
redis:
image: redis:5.0.7
container_name: seatable-redis
seatable:
image: seatable/seatable-developer:latest
container_name: seatable
ports:
- "3123:80"
# - "443:443"
volumes:
- ./data:/shared
environment:
- DB_HOST=db
- DB_ROOT_PASSWD=PASSWORD
- SEATABLE_SERVER_HOSTNAME=example.seatable.com # Specifies your host name.
- TIME_ZONE=Europe/Dublin
depends_on:
- db
- memcached
- redis
```