Memos

是一个在线的记事本以及笔记,可以和别人一起分享笔记,额怎么说呢,就类似,金山文档,石墨文档,云雀文档这种,不过这种也是快速搭建的小项目

作者GITHUB地址:Memos
我的DEMO:自用且长期维护

当然这里也同样有GPT功能可以直接在AI一栏直接问话,拷打GPT

看看作者怎么说

README

memos

✍️ memos

A lightweight, self-hosted memo hub. Open Source and Free forever.

Documentation
Live Demo
Discuss in Discord / Telegram

GitHub stars Discord

demo

Key points

  • Open source and free forever
  • Self-hosting with Docker in seconds
  • Markdown support
  • Customizable and sharable
  • RESTful API for self-service

Deploy with Docker in seconds

docker run -d --name memos -p 5230:5230 -v ~/.memos/:/var/opt/memos ghcr.io/usememos/memos:latest

The ~/.memos/ directory will be used as the data directory on your local machine, while /var/opt/memos is the directory of the volume in Docker and should not be modified.

Learn more about other installation methods.

Contribution

Contributions are what make the open-source community such an amazing place to learn, inspire, and create. We greatly appreciate any contributions you make. Thank you for being a part of our community! 🥰


Acknowledgements

  • Thanks Uffizzi for sponsoring preview environments for PRs.

Star history

Star History Chart

DOCKER搭建

一条命令的事,注意更改储存地址以及端口

docker run -d --name memos -p 5230:5230 -v ~/.memos/:/var/opt/memos ghcr.io/usememos/memos:latest

DOCKER-COMPOSE

会用的直接拿回去粘贴使用就行了

version: "3.0"
services:
  memos:
    image: neosmemo/memos:latest
    container_name: memos
    volumes:
      - ~/.memos/:/var/opt/memos
    ports:
      - 5230:5230

更新的话应该是

docker-compose pull

然后后台跑起来

docker-compose up -d