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