Thanks to visit codestin.com
Credit goes to wodby.com

Skip to content

Wodby CLI

The official Wodby CLI provides command-line automation for Wodby 2.0 resources and CI workflows.

This page explains where the CLI fits into Wodby automation. It does not duplicate command syntax or flag tables; those are generated from the CLI build.

Repository: https://github.com/wodby/wodby-cli

Install

Install the latest release from the project releases page:

CLI reference

The full command reference is generated by the CLI build process and published separately from this overview:

The reference includes commands for apps, backups, builds, deployments, environments, imports, instances, organizations, projects, routes, tasks, CI, shell completion, and version checks.

Authentication

For public usage, authenticate the CLI with an API key.

export WODBY_API_KEY=...

CI workflow

Wodby CI and third-party CI providers use the same CLI-driven workflow: initialize the build context, build images, release them to the registry, and deploy the released images.

export WODBY_API_KEY=...

wodby ci init 12345
wodby ci build php nginx
wodby ci release php nginx
wodby ci deploy php nginx

One-off commands can run inside the build context before building:

wodby ci run --service php composer install -n --no-ansi

For command-specific options and generated usage output, use the CLI reference. For provider setup and build behavior details, use the CI/CD pages below.