mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-15 03:51:12 +00:00
nocodb
This commit is contained in:
parent
1ae6758244
commit
fed3d5f2ee
@ -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
47
apps/database/nocodb.md
Normal 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
|
||||
```
|
Loading…
Reference in New Issue
Block a user