hello, this is my first time doing these stuff on digitalocean, I’ve seen the documentation on how to deploy redis database, but I want to reploy redis OM what is the best way to go about with this? just deploy it as a separate app and use it?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there,
Yes, deploying it as a separate app sounds like a plan. A quick way to do that is to spit it up as a Docker container, eg:
Then if you don’t have
redis-cli
installed locally, you can run it from the Docker container:Best,
Bobby