diff --git a/docs/index.html b/docs/index.html index 7fdd92d..a017e18 100644 --- a/docs/index.html +++ b/docs/index.html @@ -144,17 +144,19 @@

One layer. No magic.

Quick start

-

Install as a container plugin, then run it from any directory with a compose.yaml.

-
# install the plugin
-make
-sudo make install
+    

Install the signed .pkg, then run it from any directory with a compose.yaml.

+
# install: download the .pkg from Releases, then
+sudo installer -pkg ~/Downloads/container-compose-*.pkg -target /
 container system stop && container system start   # reload plugins
 
 # from a directory with compose.yaml
 container compose up            # create networks/volumes, start in order
+container compose up --wait      # ...and wait until healthy
 container compose ps
-container compose logs web -f
-container compose down -v       # stop + remove, including named volumes
+container compose logs web --follow +container compose down -v # stop + remove, including named volumes + +container compose update # self-update to the latest release
@@ -163,15 +165,17 @@

Quick start

Commands

The familiar Compose surface, mapped to native container operations.

-
up
Create networks & volumes, start services in dependency order.
+
up
Create networks & volumes, start services in dependency order. --wait blocks until healthy.
down
Stop and remove containers, networks, and named volumes.
ps
List the project’s containers.
-
logs
Show or follow container logs.
-
exec
Run a command in a running service container.
+
logs
Show or follow container logs; --tail N limits the output.
+
exec
Run a command in a running service container (-it, --workdir/--user/--env).
pull
Pre-fetch images for the project’s services.
stop / start
Stop or start containers without recreating them.
restart
Stop then start the selected services.
+
kill
Send a signal (default KILL) to the project’s containers.
config
Validate and print the resolved project plan.
+
update
Self-update to the latest signed release.