mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-12 18:35:59 +00:00
baserow
This commit is contained in:
parent
d009332f1f
commit
a455abe2c4
@ -94,8 +94,8 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
|||||||
|
|
||||||
|
|
||||||
# Database
|
# Database
|
||||||
- [baserow](https://baserow.io) 🔗 - Open source no-code database and [Airtable](https://airtable.com) alternative.
|
- [baserow](apps/database/baserow.md)
|
||||||
- [SeaTable](https://seatable.io/en/) 🔗 - Simple like Excel, powerful like a database (free up to 3 users).
|
- [SeaTable](apps/database/seatable.md)
|
||||||
- [Dataspread](https://dataspread.github.io) 🔗 - combines the intuitiveness and flexibility of spreadsheets and the scalability and power of databases.
|
- [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.
|
- [Hue](https://docs.gethue.com/quickstart/) 🔗 - open source SQL Assistant for Databases.
|
||||||
|
|
||||||
|
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
|
||||||
|
```
|
52
apps/database/seatable.md
Normal file
52
apps/database/seatable.md
Normal 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
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user