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>/
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
Was this helpful?