This commit is contained in:
Tomasz Borychowski 2022-07-09 11:33:18 +01:00
parent 1ae6758244
commit fed3d5f2ee
2 changed files with 48 additions and 0 deletions

View File

@ -115,6 +115,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
- [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.
- [NocoDB](apps/database/nocodb.md) - Open Source Airtable Alternative - turns a DB into a Spreadsheet with API.

47
apps/database/nocodb.md Normal file
View File

@ -0,0 +1,47 @@
# NocoDB
- Open Source Airtable Alternative - turns any MySQL, Postgres, SQLite into a Spreadsheet with REST APIs.
- quite powerful & lots of options
- too much eye candy animations
<br>
- [Homepage](https://nocodb.com)
- [Docs](https://docs.nocodb.com)
- [Github Repo](https://docs.nocodb.com)
## docker-compose.yml
```yml
---
services:
root_db:
image: mysql:5.7
container_name: nocodb-db
restart: unless-stopped
healthcheck:
test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ]
timeout: 20s
retries: 10
environment:
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: root_db
MYSQL_USER: noco
MYSQL_PASSWORD: password
volumes:
- ./db_data:/var/lib/mysql
nocodb:
image: nocodb/nocodb:latest
container_name: nocodb
depends_on:
root_db:
condition: service_healthy
restart: unless-stopped
environment:
NC_DB: "mysql2://root_db:3306?u=noco&p=password&d=root_db"
ports:
- "3123:8080"
volumes:
- ./nc_data:/usr/app/data
```