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
eqs services lseqs services get <svc>
Details of a service: source, build, domain, scale, last deploy.
eqs services get api-gatewayeqs deploy <svc>
Triggers a new service deploy (build → push → rollout).
--branch <b>Branch to deploy
--no-waitDon't wait for the rollout
eqs deploy api-gateway --branch main
eqs restart <svc>
Restarts the service instances.
eqs restart web-frontendeqs scale <svc>
Adjusts the instance limits (min–max). v2.
--min <n>Minimum (0 = scale to zero)
--max <n>Maximum
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
eqs env api-gateway --set LOG_LEVEL=debug
Changing variables with
eqs env --set triggers a new deploy automatically to apply them.