mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-05-15 20:11:09 +00:00
cherry
This commit is contained in:
parent
47e12b3e66
commit
67c254cc90
@ -70,6 +70,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
|
||||
|
||||
|
||||
# Bookmarks & Read Later
|
||||
- [Cherry](apps/bookmarks/cherry.md)
|
||||
- [LinkAce](apps/bookmarks/linkace.md)
|
||||
- [Linkding](apps/bookmarks/linkding.md)
|
||||
- [Shaarli](apps/bookmarks/shaarli.md)
|
||||
|
BIN
apps/bookmarks/cherry.jpeg
Normal file
BIN
apps/bookmarks/cherry.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 553 KiB |
32
apps/bookmarks/cherry.md
Normal file
32
apps/bookmarks/cherry.md
Normal file
@ -0,0 +1,32 @@
|
||||
# Cherry
|
||||
- Not the worst looking
|
||||
- Has dark theme
|
||||
- Poor UX (e.g. no confirmations on user actions, loosing focus)
|
||||
- Bookmarklet didn't work in safari
|
||||
- New item is created in a popup (that does not have a deep-link to it, like in other services)
|
||||
|
||||
- [Github repo](https://github.com/haishanh/cherry)
|
||||
- [Homepage](https://cherry.haishan.me)
|
||||
- [Docs](https://cherry.haishan.me/docs/deploy)
|
||||
|
||||

|
||||
|
||||
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
services:
|
||||
cherry:
|
||||
image: haishanh/cherry
|
||||
container_name: cherry
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- JWT_SECRET=some-secret-string
|
||||
- ENABLE_PUBLIC_REGISTRATION=1
|
||||
- USE_INSECURE_COOKIE=1
|
||||
ports:
|
||||
- 3123:8000
|
||||
volumes:
|
||||
- ./data:/data
|
||||
```
|
Loading…
Reference in New Issue
Block a user