Skip to main content
WordPress does not define its own lifecycle commands. Like every application plugin, a WordPress stack is built, started, stopped, inspected, and rolled out with the core sitectl commands, which operate on whichever context is active:
sitectl create wp             # scaffold the stack and its context
sitectl compose build         # build images
sitectl compose up -d         # start the stack
sitectl compose ps            # service status
sitectl compose logs -f       # follow logs
sitectl compose down          # stop the stack
sitectl deploy                # pull updates and restart (rollout)
sitectl wp ... is reserved for WordPress-specific operations — WP-CLI, Composer, plugin and theme maintenance, and core, cache, and database helpers. General lifecycle stays in the core CLI so the same operational contract applies to every stack. See sitectl create, sitectl compose, and sitectl deploy for the full lifecycle reference.