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!
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.