Question

How to install software on App Platform outside of deploying an App? Like installing Redis

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?


Submit an answer


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
March 28, 2023

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

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up