How do I deploy an application to a Stack?

To deploy your application, follow these steps:

  • Enter the directory of your Stack: cd stack/<Language>/<Stack>/

The path to the chosen Stack in the menu will always be:

stack/<Language>/<Stack>/\

Example: stack/python/flask-redis/

stack/java/tomcat-mysql/

  • Stop the currently deployed Stack with this command: docker compose down\

  • Upload your application to the /app directory either by pulling from Git, using Wget, or your preferred method.

  • Then deploy your application or its updates with the command: docker compose up --build

That's it. These steps should be followed when deploying your application for the first time or when updating it.

Last updated