> For AI agents: the complete documentation index is available at https://www.tteam.icu/llms.txt, the full documentation bundle is available at https://www.tteam.icu/llms-full.txt.

# memos临时粘贴板

Memos 是一个轻量备忘录服务，可以作为随时访问的临时粘贴板，也适合记录短文本、链接和零散想法。

[开源地址](https://github.com/usememos/memos)

## 启动

```yml file="./memos/docker-compose.yml" title="docker-compose.yml"
version: "3.0"
services:
  memos:
    image: neosmemo/memos:stable
    container_name: memos
    volumes:
      - ./data:/var/opt/memos
    ports:
      - 5230:5230
    restart: always
```

:::tip
如果对外开放，建议开启登录限制并定期备份数据目录。它很适合记临时内容，但也容易积累重要资料。
:::
