diff --git a/README.md b/README.md index 82aa4e1..34b9f3a 100644 --- a/README.md +++ b/README.md @@ -140,6 +140,7 @@ docker compose up - [Answer](examples/answer) - An open-source knowledge-based community software. You can use it quickly to build Q&A community for your products, customers, teams, and more. - [Obsidian-Gitsync-Perlite](https://github.com/l4rm4nd/Obsidian-Gitsync-Perlite) - Continuously sync Obsidian markdown notes from GitHub and publish it for the webs. - [Obsidian-Remote](examples/obsidian-remote) - This docker image allows you to run obsidian in docker as a container and access it via your web browser. +- [Memos](examples/memos) - An open-source, self-hosted memo hub with knowledge management and social networking. ### Analytics - [Matomo](examples/matomo) - Matomo is the leading Free/Libre open analytics platform. @@ -173,6 +174,7 @@ docker compose up - [Answer](examples/answer) - An open-source knowledge-based community software. You can use it quickly to build Q&A community for your products, customers, teams, and more. - [Obsidian-Remote](examples/obsidian-remote) - This docker image allows you to run obsidian in docker as a container and access it via your web browser. - [Obsidian-Gitsync-Perlite](https://github.com/l4rm4nd/Obsidian-Gitsync-Perlite) - Continuously sync Obsidian markdown notes from GitHub and publish it for the webs. +- [Memos](examples/memos) - An open-source, self-hosted memo hub with knowledge management and social networking. ### Finance - [TRSync](examples/trsync) - Django web frontend for pytr to download all Trade Republic depot data. @@ -190,3 +192,9 @@ docker compose up ## Star History [![Star History Chart](https://api.star-history.com/svg?repos=Haxxnet/Compose-Examples&type=Date)](https://star-history.com/#Haxxnet/Compose-Examples&Date) + +## Join the community! + + + + \ No newline at end of file diff --git a/examples/memos/README.md b/examples/memos/README.md new file mode 100644 index 0000000..fecb061 --- /dev/null +++ b/examples/memos/README.md @@ -0,0 +1,3 @@ +# References + +- https://github.com/usememos/memos diff --git a/examples/memos/docker-compose.yml b/examples/memos/docker-compose.yml new file mode 100644 index 0000000..82c4cc6 --- /dev/null +++ b/examples/memos/docker-compose.yml @@ -0,0 +1,23 @@ +version: "3.0" + +services: + memos: + image: neosmemo/memos:latest + container_name: memos + volumes: + - ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/memos/data:/var/opt/memos + ports: + - 5230:5230 + #networks: + # - proxy + #labels: + # - traefik.enable=true + # - traefik.http.routers.memos.rule=Host(`memosservice.example.com`) + # - traefik.http.services.memos.loadbalancer.server.port=5230 + # - traefik.docker.network=proxy + # # Part for optional traefik middlewares + # - traefik.http.routers.memos.middlewares=local-ipwhitelist@file,basic-auth@file + +#networks: +# proxy: +# external: true \ No newline at end of file