add memos

This commit is contained in:
L4RM4ND 2023-03-01 22:17:49 +01:00
parent 8274525a7c
commit 3c829b5932
3 changed files with 34 additions and 0 deletions

View File

@ -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!
<a href="https://github.com/Haxxnet/Compose-Examples/graphs/contributors">
<img src="https://contrib.rocks/image?repo=Haxxnet/Compose-Examples" />
</a>

3
examples/memos/README.md Normal file
View File

@ -0,0 +1,3 @@
# References
- https://github.com/usememos/memos

View File

@ -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