Skip to main content

πŸ“‹ List

The /list endpoint of the Dashium API provides a list of available routes to retrieve specific information about a Docker cluster. Here are the details of the accessible routes:

  1. Retrieve cluster information:

    • Path: /list/:cluster
    • Methods: GET
    • Params: cluster (Docker cluster name)
  2. Retrieve the list of containers in the cluster:

    • Path: /list/:cluster/containers
    • Methods: GET
    • Params: cluster (Docker cluster name)
  3. Retrieve the list of volumes in the cluster:

    • Path: /list/:cluster/volumes
    • Methods: GET
    • Params: cluster (Docker cluster name)
  4. Retrieve the list of stacks in the cluster:

    • Path: /list/:cluster/stacks
    • Methods: GET
    • Params: cluster (Docker cluster name)
  5. Retrieve the list of images in the cluster:

    • Path: /list/:cluster/images
    • Methods: GET
    • Params: cluster (Docker cluster name)
  6. Retrieve the list of networks in the cluster:

    • Path: /list/:cluster/networks
    • Methods: GET
    • Params: cluster (Docker cluster name)

To use these routes, make GET requests, replacing :cluster with the desired Docker cluster name.