Skip to content

Commit a05f77d

Browse files
authoredDec 23, 2024
Merge pull request #2188 from undb-io/release/v1.0.0-135
Release version v1.0.0-135
2 parents 9395354 + 71c6124 commit a05f77d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+3036
-201
lines changed
 

‎CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## v1.0.0-135
4+
5+
6+
### 🏡 Chore
7+
8+
- Add readme about docker volume ([e32d902](https://github.com/undb-io/undb/commit/e32d902))
9+
10+
### ❤️ Contributors
11+
12+
- Nichenqin ([@nichenqin](http://github.com/nichenqin))
13+
314
## v1.0.0-134
415

516
## v1.0.0-133

‎README.md

+12
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).
3838

3939
- ⚡ No-code platform, easy to use
4040
- 🗄️ Based on SQLite, a lightweight database
41+
- 🥁 Built-in playground mode, try it out without any setup
4142
- 🔐 Private and local first
4243
- 📦 Can be packaged into a binary file using Bun
4344
- 📊 Support formula field like Excel/Airtable
@@ -65,6 +66,17 @@ UNDB is a no-code platform that can also serve as a Backend as a Service (BaaS).
6566
docker run -p 3721:3721 ghcr.io/undb-io/undb:latest
6667
```
6768

69+
- Run with docker with volume
70+
71+
```bash
72+
docker run -d \
73+
-p 3721:3721 \
74+
-v $(pwd)/undb.sqlite:/usr/src/app/undb.sqlite \
75+
-v $(pwd)/undb:/usr/src/app/undb \
76+
--name undb \
77+
ghcr.io/undb-io/undb:latest
78+
```
79+
6880
## Development
6981

7082
### Local Development (Recommended)

0 commit comments

Comments
 (0)
Failed to load comments.