diff --git a/README.md b/README.md index 7285a72..9cf618e 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/apps/notes/memos.md b/apps/notes/memos.md new file mode 100644 index 0000000..c9805ae --- /dev/null +++ b/apps/notes/memos.md @@ -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 + +
+ +- [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 +```