doc on how to add a stack #552

Merged
telackey merged 2 commits from add-a-stack into main 2023-10-01 18:33:01 +00:00
Showing only changes of commit f653266dd7 - Show all commits

View File

@ -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
```