Skip to main content

dvs service list

List all available services and their status.

Usage​

dvs service list [--json]

Options​

  • --json - Output in JSON format for automation and scripts

Output​

The command displays all available services with their installation status:

  • [ βœ” ] - Installed and running
  • [ ⚠ ] - Installed but stopped
  • [ ] - Not installed

JSON Output​

{
"services": [
{
"name": "mysql",
"status": "running",
"installed": true,
"url": "https://mysql.svc.dvs.sh"
},
{
"name": "mailpit",
"status": "not_installed",
"installed": false,
"url": ""
}
]
}

Example​

$ dvs service list

Available services:
[ βœ” ] mysql https://mysql.svc.dvs.sh
[ ⚠ ] mariadb
[ ] mailpit
[ ] phpmyadmin