Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add app memos #37

Merged
merged 5 commits into from
May 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 104 additions & 0 deletions Apps/Memos/appfile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,104 @@
{
"version": "0.12.2",
"title": "Memos",
"name": "Memos",
"icon": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/icon.png",
"tagline": "A lightweight, self-hosted memo hub. Open Source and Free forever.",
"overview": "A lightweight, self-hosted memo hub. Open Source and Free forever.",
"thumbnail": "https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/thumbnail.png",
"screenshots": [
"https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/screenshot-1.png"
],
"category": ["Note"],
"developer": {
"name": "usememos Team",
"website": "https://github.com/usememos/memos/graphs/contributors",
"donate_text": "",
"donate_link": ""
},
"adaptor": {
"name": "usememos Team",
"website": "https://github.com/orgs/usememos/people",
"donate_text": "",
"donate_link": ""
},
"support": "",
"website": "",
"container": {
"image": "neosmemo/memos:latest",
"shell": "sh",
"privileged": false,
"network_model": "bridge",
"web_ui": {
"http": "5230",
"path": ""
},
"health_check": "",
"envs": [
{
"key": "PUID",
"value": "1000",
"description": "",
"configurable": "no"
},
{
"key": "PGID",
"value": "1000",
"description": "",
"configurable": "no"
},
{
"key": "TZ",
"value": "$TZ",
"description": "",
"configurable": "no"
}
],
"ports": [
{
"container": "5230",
"host": "5230",
"type": "tcp",
"allocation": "automatic",
"configurable": "no",
"description": ""
}
],
"volumes": [
{
"container": "/var/opt/memos",
"host": "/DATA/AppData/memos/memos",
"mode": "rw",
"allocation": "automatic",
"configurable": "no",
"description": ""
},
],
"devices": [],
"constraints": {
"min_memory": 64,
"min_storage": 128
},
"restart_policy": "unless-stopped",
"sysctls": [],
"cap_add": [],
"labels": [],
"host_name": "Memos",
"cmd": []
},
"abilities": {
"notification": false,
"widgets": false,
"authentication": false,
"search": false,
"upnp": false
},
"tips": {
"before_install": []
},
"changelog": {
"latest_updates": "",
"url": ""
},
"latest_update_date": ""
}
65 changes: 65 additions & 0 deletions Apps/Memos/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
name: memos
services:
memos:
environment:
PGID: "1000"
PUID: "1000"
TZ: $TZ
image: neosmemo/memos:0.12.2
deploy:
resources:
reservations:
memory: 64M
network_mode: bridge
ports:
- target: 5230
published: "5230"
protocol: tcp
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/memos/memos
target: /var/opt/memos
x-casaos:
envs:
- container: PUID
description:
en_us: ""
- container: PGID
description:
en_us: ""
- container: TZ
description:
en_us: ""
ports:
- container: "5230"
description:
en_us: WebUI HTTP Port
zh_cn: WebUI HTTP 端口

volumes:
- container: /config
description:
en_us: ""
x-casaos:
architectures:
- amd64
- arm64
main: memos
CorrectRoadH marked this conversation as resolved.
Show resolved Hide resolved
author: usememos Team
category: Downloader
description:
en_us: Memos is a lightweight, self-hosted memo hub. Open Source and Free forever.
zh_cn: Memos 是一个轻量级的自托管Memos中心。 开源且永远免费。
developer: usememos Team
icon: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/icon.png
screenshot_link:
- https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/screenshot-1.png
tagline:
en_us: Memos is a lightweight, self-hosted memo hub. Open Source and Free forever.
zh_cn: Memos 是一个轻量级的自托管Memos中心。 开源且永远免费。
thumbnail: https://cdn.jsdelivr.net/gh/IceWhaleTech/CasaOS-AppStore@main/Apps/Memos/thumbnail.png
tips: {}
title:
en_us: Memos
port_map: "5230"
Binary file added Apps/Memos/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Apps/Memos/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Apps/Memos/thumbnail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.