Report this

What is the reason for this report?

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

Posted on July 1, 2022

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:

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

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Start building today

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.