insmemo-web
insmemo-web copied to clipboard
(Need Help) Self-Deploy Service Guide
Here are lots of requirement of self-deploy Memos service.
So is there a tech-man with interest that can help me about this:
- try to deploy this in your server;
- write a guide document about the process;
And here are some resource you may need:
- docker image: https://hub.docker.com/r/neosmemo/memos
- backend source code: https://github.com/boojack/insmemo
Hey I already have tested it on my server and it works.
I just followed the instructions on your image. Easy as pie.
So is there anything exactly missing? I'm happy to contribute.
@WestXu Thanks a lot for your interests, and I need a step-by-step deploy document for those non-tech person. If you have some experiences to deploy, write down and share it please.
https://github.com/boojack/insmemo-web/pull/7
Deployment
- Install Docker. (Check official docs here.)
- Make sure you have docker accessible from your terminal. Try
docker -v
to see if it correctly prints some version info. - Input
docker run --name memos -p 8080:8080 -v ~/memos-data/:/data/ -d neosmemo/memos
. For details of every argument passed, check here. - Now you should be able to access the app from your browser via http://localhost:8080.
- If anything doesn't work, file an issue, please.
Update
We recommend using watchtower to auto-update your deployment:
docker run --name watchtower -v /var/run/docker.sock:/var/run/docker.sock -d containrrr/watchtower --cleanup memos
Write by @WestXu 🎉