services

The convox services command lists the services defined for an app along with their domains and port mappings. Use convox services restart to restart a specific service without affecting the others.

services

List services for an app

Usage

    convox services

Examples

    $ convox services
    SERVICE  DOMAIN                                PORTS
    web      web.myapp.0a1b2c3d4e5f.convox.cloud  443:3000

services restart

Restart a service

Usage

    convox services restart <service>

Examples

    $ convox services restart web
    Restarting web... OK

services update

Update a service in place. Mirrors the effect of editing scale.* fields in convox.yml and redeploying, without a new release. Accepts the same flags as convox scale (--count, --cpu, --memory, --gpu, --gpu-vendor).

Usage

    convox services update <service> [--count N] [--cpu M] [--memory M] [--gpu N] [--gpu-vendor VENDOR]

Examples

    $ convox services update web --gpu 1 --gpu-vendor nvidia
    Updating web... OK

    $ convox services update web --count 3 --memory 2048
    Updating web... OK

See Also