CLI · CommandsServices

Services

List, inspect, deploy and operate services.

eqs services ls

Lists the active space's services, with status and instances.

--allInclude services from all spaces
shell
eqs services ls
eqs services get <svc>

Details of a service: source, build, domain, scale, last deploy.

shell
eqs services get api-gateway
eqs deploy <svc>

Triggers a new service deploy (build → push → rollout).

--branch <b>Branch to deploy
--no-waitDon't wait for the rollout
shell
eqs deploy api-gateway --branch main
eqs restart <svc>

Restarts the service instances.

shell
eqs restart web-frontend
eqs scale <svc>

Adjusts the instance limits (min–max). v2.

--min <n>Minimum (0 = scale to zero)
--max <n>Maximum
shell
eqs scale worker --min 1 --max 6
eqs env <svc>

Reads or sets the service's environment variables.

--set K=VSet a variable
--rm KRemove a variable
shell
eqs env api-gateway --set LOG_LEVEL=debug
Changing variables with eqs env --set triggers a new deploy automatically to apply them.