diff --git a/README.md b/README.md index c0b67be..25fe798 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/memos/README.md b/memos/README.md new file mode 100644 index 0000000..41533e5 --- /dev/null +++ b/memos/README.md @@ -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/ diff --git a/memos/docker-compose.yml b/memos/docker-compose.yml new file mode 100644 index 0000000..2aad40a --- /dev/null +++ b/memos/docker-compose.yml @@ -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