From e8d75b2a3d8c3d59c62efcbcd54a7efef271e23d Mon Sep 17 00:00:00 2001 From: mbecker20 Date: Mon, 12 Aug 2024 14:59:10 -0700 Subject: [PATCH] improve docsite resource page --- docsite/docs/resources.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/docsite/docs/resources.md b/docsite/docs/resources.md index 8e00a6ae5..fef9912d8 100644 --- a/docsite/docs/resources.md +++ b/docsite/docs/resources.md @@ -25,16 +25,18 @@ All resources which depend on git repos / docker registries are able to use thes -- Deploy with docker compose.

-- Provide the compose file in UI, or move the files to a git repo and use a webhook for auto redeploy on push.

--- Supports composing multiple compose files using `docker compose -f ... -f ...`. +-- Supports composing multiple compose files using `docker compose -f ... -f ...`.

-- Pass environment variables usable within the compose file. Interpolate in app-wide variables / secrets. ## Repo --- Put scripts in git repos, and run them on a server every time they are pushed to. +-- Put scripts in git repos, and run them on a Server, or using a Builder.

+-- Can build binaries, perform automation, really whatever you can think of. ## Build --- Build application source into docker images, and push them to +-- Build application source into docker images, and push them to the configured registry.

+-- The source can be any git repo containing a Dockerfile. ## Builder @@ -49,11 +51,12 @@ All resources which depend on git repos / docker registries are able to use thes ## ResourceSync -- Orchestrate all your configuration declaratively by defining it in `toml` files, which are checked into a git repo.

--- Can deploy **Deployments** and **Stacks** if changes are suggested. Specify deploy ordering with `after` array. (like docker compose `depends_on` but can span across servers.). +-- Can deploy **Deployments** and **Stacks** if changes are suggested.

+-- Specify deploy ordering with `after` array. (like docker compose `depends_on` but can span across servers.). ## Alerter --- Route alerts to various endpoints

+-- Route alerts to various endpoints.

-- Can configure rules on each Alerter, such as resource whitelist, blacklist, or alert type filter. ## ServerTemplate