mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-05-10 05:23:59 +00:00
add memos
This commit is contained in:
parent
8274525a7c
commit
3c829b5932
@ -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.
|
- [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-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.
|
- [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
|
### Analytics
|
||||||
- [Matomo](examples/matomo) - Matomo is the leading Free/Libre open analytics platform.
|
- [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.
|
- [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-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.
|
- [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
|
### Finance
|
||||||
- [TRSync](examples/trsync) - Django web frontend for pytr to download all Trade Republic depot data.
|
- [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
|
||||||
[](https://star-history.com/#Haxxnet/Compose-Examples&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
3
examples/memos/README.md
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
# References
|
||||||
|
|
||||||
|
- https://github.com/usememos/memos
|
23
examples/memos/docker-compose.yml
Normal file
23
examples/memos/docker-compose.yml
Normal 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
|
Loading…
x
Reference in New Issue
Block a user