From f653266dd70da573004b72ea269aa73dc07e8444 Mon Sep 17 00:00:00 2001 From: zramsay Date: Fri, 29 Sep 2023 14:16:37 -0400 Subject: [PATCH] commands to run + nits --- docs/adding-a-new-stack.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/adding-a-new-stack.md b/docs/adding-a-new-stack.md index c76cc5f2..4fbf27b2 100644 --- a/docs/adding-a-new-stack.md +++ b/docs/adding-a-new-stack.md @@ -48,6 +48,7 @@ services: ```bash github.com/my-org/my-new-stack ``` +whereby that repository contains your source code and a `Dockerfile`, and matches the `repos:` field in the `stack.yml`. - in `app/data/container-image-list.txt` add: @@ -60,3 +61,11 @@ cerc/my-new-stack ```bash my-new-stack ``` + +Now, the following commands will fetch, build, and deploy you app: + +```bash +laconic-so --stack my-new-stack setup-repositories +laconic-so --stack my-new-stack build-containers +laconic-so --stack my-new-stack deploy-system up +```