diff --git a/blueprints/memos/docker-compose.yml b/blueprints/memos/docker-compose.yml new file mode 100644 index 00000000..e6600762 --- /dev/null +++ b/blueprints/memos/docker-compose.yml @@ -0,0 +1,15 @@ +version: "3.8" + +services: + memos: + image: neosmemo/memos:stable + restart: unless-stopped + volumes: + - memos_data:/var/opt/memos + environment: + - MEMOS_MODE=${MEMOS_MODE} + - MEMOS_PORT=${MEMOS_PORT} + ports: + - "5230" +volumes: + memos_data: diff --git a/blueprints/memos/memos.png b/blueprints/memos/memos.png new file mode 100644 index 00000000..029df083 Binary files /dev/null and b/blueprints/memos/memos.png differ diff --git a/blueprints/memos/template.toml b/blueprints/memos/template.toml new file mode 100644 index 00000000..b033bdb7 --- /dev/null +++ b/blueprints/memos/template.toml @@ -0,0 +1,14 @@ +[variables] +main_domain = "${domain}" + +[config] +[[config.domains]] +serviceName = "memos" +port = 5230 +host = "${main_domain}" + + +[config.env] +MEMOS_MODE = "prod" +MEMOS_PORT = "5230" +[[config.mounts]] \ No newline at end of file diff --git a/meta.json b/meta.json index 422d9b5d..45129c63 100644 --- a/meta.json +++ b/meta.json @@ -2825,5 +2825,35 @@ "self-hosted", "aggregator" ] + }, + { + "id": "gitlab-ce", + "name": "GitLab CE", + "version": "latest", + "description": "GitLab Community Edition is a free and open source platform for managing Git repositories, CI/CD pipelines, and project management.", + "logo": "gitlab-ce.svg", + "links": { + "github": "https://gitlab.com/gitlab-org/gitlab-ce", + "website": "https://gitlab.com/", + "docs": "https://docs.gitlab.com/ee/" + }, + "tags": ["git", "ci-cd", "version-control", "project-management"] + }, + { + "id": "memos", + "name": "Memos", + "version": "latest", + "description": "Memos is a self-hosted, open-source note-taking application that allows you to create, organize, and share notes with ease. It provides a simple and effective solution for managing your notes from anywhere.", + "logo": "memos.png", + "links": { + "github": "https://github.com/usememos/memos", + "website": "https://www.usememos.com/", + "docs": "https://www.usememos.com/docs" + }, + "tags": [ + "productivity", + "notes", + "bookmarks" + ] } ]