I’d like to install Redis locally on my app, and I don’t need a managed instance of Redis. I tried using apt in the web console, but the web console seems very limited. How to do this?
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.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
Indeed you can not install packages directly on the App Platform after a deployment. For that you need to use a Dockerfile where you can specify all of the packages that need to be installed during the build process:
https://docs.digitalocean.com/products/app-platform/reference/dockerfile/
Keep in mind that the App Platform local storage is ephemeral meaning that all changes made during the runtime will be lost after a new deployment. If you need to persist your Redis data, it is best to use a Managed Redis database or a Redis instance installed on a Droplet:
https://docs.digitalocean.com/products/app-platform/how-to/store-data/
Hope that this helps!
Best,
Bobby