Skip to main content

Overview

Manage all types of services within your Qovery environment. This is a unified command to list services across applications, containers, databases, jobs, and Helm charts.

Commands

List Services

List all services in current environment:
qovery service list
This displays all services regardless of type (applications, containers, databases, cronjobs, lifecycle jobs, Helm charts).

Options

FlagDescription
--organizationOrganization name
--projectProject name
--environmentEnvironment name
--outputOutput format (table, json, yaml)
--helpShow help

Examples

List All Services

# Set context
qovery context set

# List all services in environment
qovery service list

# Example output:
# NAME              TYPE           STATUS
# my-api            Application    Running
# postgres-db       Database       Running
# redis-cache       Container      Running
# backup-job        Cronjob        Running
# db-migration      Lifecycle      Completed

List Services with JSON Output

# Get services as JSON for scripting
qovery service list --format json

Service Types

The service list command displays all the following service types:
  • Application - Applications built from Git repositories
  • Container - Pre-built Docker images
  • Database - Managed databases (PostgreSQL, MySQL, MongoDB, Redis, etc.)
  • Cronjob - Scheduled jobs
  • Lifecycle - Lifecycle jobs (run on specific events)
  • Helm - Helm charts