This commit is contained in:
Tomasz Borychowski 2022-11-21 18:09:30 +00:00
parent 1990778eaa
commit bfa295b552
2 changed files with 27 additions and 0 deletions

View File

@ -264,6 +264,7 @@ The aims is to provide a ready-to-run recipes that you can just copy, paste and
# Notes
- [Joplin Server](apps/notes/joplin.md)
- [Memos](apps/notes/memos.md)

26
apps/notes/memos.md Normal file
View File

@ -0,0 +1,26 @@
# Memos
An open-source, self-hosted memo hub with knowledge management and collaboration.
- Really easy to setup and use
- Has a dedicated mobile client!
- Quite good UX
<br>
- [Homepage](https://usememos.com)
- [Github repo](https://github.com/usememos/memos)
- [Mobile client](https://memos.moe)
## docker-compose.yml
```yaml
---
services:
memos:
image: neosmemo/memos:latest
container_name: memos
volumes:
- ./memos:/var/opt/memos
ports:
- 5230:5230
```