Question

How to set up Redis OM (redis stack) on digitalocean

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?


Submit an answer
Answer a question...

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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
January 6, 2023

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:

docker run -d --name redis-stack-server -p 6379:6379 redis/redis-stack-server:latest

Then if you don’t have redis-cli installed locally, you can run it from the Docker container:

docker exec -it redis-stack redis-cli

Best,

Bobby