Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
canifa_note
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vũ Hoàng Anh
canifa_note
Commits
076c42d9
Commit
076c42d9
authored
Jan 17, 2022
by
email
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: update readme
parent
5290270d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
38 additions
and
37 deletions
+38
-37
README.md
README.md
+21
-37
docker-deploy-guide.md
docs/deploy/docker-deploy-guide.md
+17
-0
No files found.
README.md
View file @
076c42d9
<h1
align=
"center"
>
<h1
align=
"center"
>
✍️ Memos
</h1>
✍️ Memos
</h1>
<p
align=
"center"
>
<p
align=
"center"
>
<a
href=
"https://github.com/justmemos/memos/issues"
><img
alt=
"GitHub issues"
src=
"https://img.shields.io/github/issues/justmemos/memos"
></a>
<a
href=
"https://memos.onrender.com/"
>
Live Demo
</a>
•
<a
href=
"https://github.com/justmemos/memos/network"
><img
alt=
"GitHub forks"
src=
"https://img.shields.io/github/forks/justmemos/memos"
></a>
<a
href=
"https://github.com/justmemos/memos/discussions"
>
Discussions
</a>
•
<a
href=
"https://github.com/justmemos/memos/stargazers"
><img
alt=
"GitHub stars"
src=
"https://img.shields.io/github/stars/justmemos/memos"
></a>
<a
href=
"https://t.me/+M-AqruZmJBhkYWQ1"
>
Telegram
</a>
<a
href=
"https://github.com/justmemos/memos/blob/main/LICENSE"
><img
alt=
"GitHub license"
src=
"https://img.shields.io/github/license/justmemos/memos"
></a>
</p>
</p>
<p
align=
"center"
>
<p
align=
"center"
>
<a
href=
"https://memos.onrender.com/"
>
Demo
</a>
•
<img
alt=
"GitHub stars"
src=
"https://img.shields.io/github/stars/justmemos/memos"
/>
<a
href=
"https://t.me/+M-AqruZmJBhkYWQ1"
>
Telegram 群组
</a>
<img
alt=
"GitHub forks"
src=
"https://img.shields.io/github/forks/justmemos/memos"
/>
<img
alt=
"GitHub Watchers"
src=
"https://img.shields.io/github/watchers/justmemos/memos"
/>
<img
alt=
"GitHub license"
src=
"https://img.shields.io/github/license/justmemos/memos"
/>
</p>
</p>
Memos 是一款开源的
[
flomo
](
https://flomoapp.com/
)
替代工具,为了快速方便的部署属于自己的碎片化知识管理工具。
Memos 是一款开源的 flomo 替代工具。/ An open-source alternative to flomo.
## 🎯 产品意图
您可以很方便快捷的私有化部署出属于您自己的碎片化知识管理工具!
## 为何做这个?
### 用于记录:
-
📅 用于记录:每日/周计划、💡 突发奇想、📕 读后感...
-
📅 每日/周计划、💡突发奇想、📕读后感...
-
🏗️ 代替了微信“文件传输助手”;
-
🏗️ 代替了我在微信上经常使用的“文件传输助手”;
-
📒 打造一个属于自己的轻量化“卡片”笔记簿;
-
📒 打造一个属于自己的轻量化“卡片”笔记簿;
### 有何特点呢?
## ✨ 特色亮点
-
✨ 开源项目;
-
🦄 开源项目;
-
😋 精美且细节的视觉样式;
-
😋 精美且细节的视觉样式;
-
📑 体验优良的交互逻辑;
-
📑 体验优良的交互逻辑;
-
⚡ 快速部署
-
⚡️ 快速地私有化部署;
-
🚀 目前正在全力开发中,更多特性陆续公布...
## 使用Docker部署
一、下载数据库文件至本地
`~/data/memos.db`
,运行命令。
```
mkdir ~/data
cd ~/data
wget --no-check-certificate https://github.com/justmemos/memos/blob/main/resources/memos.db?raw=true
```
二、创建并启动容器,镜像里包含所需的所有环境。只需自行 pull + run,即可完成部署。
## 📕 文档
```
docker run --rm --pull always --name memos -p 8080:8080 -v ~/data/:/usr/local/memos/data/ -d neosmemo/memos
```
! 默认数据库内会有两个帐号,分别为
`test`
和
`guest`
,密码均为
`123456`
,
**部署完成后请及时更改你的密码**
-
[
使用 Docker 部署
](
https://github.com/justmemos/memos/tree/main/docs/deploy
)
enjoy!
Enjoy it and welcome your contributions
docs/deploy/docker-deploy-guide.md
0 → 100644
View file @
076c42d9
# 使用 Docker 部署
1.
下载初始化数据库文件至本地
`~/data/memos.db`
,运行命令:
```shell
mkdir ~/data
cd ~/data
wget --no-check-certificate https://github.com/justmemos/memos/blob/main/resources/memos.db?raw=true
```
2.
创建并启动容器,镜像里包含所需的所有环境。只需自行 pull + run,即可完成部署:
```docker
docker run --rm --pull always --name memos -p 8080:8080 -v ~/data/:/usr/local/memos/data/ -d neosmemo/memos
```
默认数据库内会有两个帐号,分别为
`test`
和
`guest`
,密码均为
`123456`
。
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment