1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-08 04:04:42 +02:00

add memos

This commit is contained in:
kev 2024-08-22 18:52:10 +08:00
parent ef1887567c
commit 4fe9202416
3 changed files with 33 additions and 0 deletions

View File

@ -421,6 +421,7 @@ A collection of delicious docker recipes.
- [x] memgraph
- [x] memgraph-mage
- [x] memgraph-platform
- [x] neosmemo/memos
- [x] minlag/mermaid-cli
- [x] metabase/metabase
- [x] metasploitframework/metasploit-framework :skull:

6
memos/README.md Normal file
View File

@ -0,0 +1,6 @@
memos
=====
[Memos][1] is a privacy-first, lightweight note-taking service. Easily capture and share your great thoughts.
[1]: https://www.usememos.com/

26
memos/docker-compose.yml Normal file
View File

@ -0,0 +1,26 @@
services:
memos:
image: neosmemo/memos:stable
ports:
- "5230:5230"
volumes:
- ./data/memos:/var/opt/memos
environment:
- MEMOS_DRIVER=postgres
- MEMOS_DSN=user=memos password=memos dbname=memos host=postgres sslmode=disable
depends_on:
- postgres
restart: unless-stopped
postgres:
image: postgres:16-alpine
ports:
- "5432:5432"
volumes:
- ./data/postgres:/var/lib/postgresql/data
environment:
- POSTGRES_USER=memos
- POSTGRES_PASSWORD=memos
- POSTGRES_DB=memos
restart: unless-stopped