From bfa295b5527f2c0b31dff902cb4c4ada0cb0549a Mon Sep 17 00:00:00 2001 From: Tomasz Borychowski Date: Mon, 21 Nov 2022 18:09:30 +0000 Subject: [PATCH] memos --- README.md | 1 + apps/notes/memos.md | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 apps/notes/memos.md 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 +```