github.com/kim0/docker@v0.6.2-0.20161130212042-4addda3f07e7/docs/reference/commandline/stack_ls.md (about)

     1  ---
     2  title: "stack ls"
     3  description: "The stack ls command description and usage"
     4  keywords: ["stack, ls"]
     5  advisory: "experimental"
     6  ---
     7  
     8  <!-- This file is maintained within the docker/docker Github
     9       repository at https://github.com/docker/docker/. Make all
    10       pull requests against that repo. If you see this file in
    11       another repository, consider it read-only there, as it will
    12       periodically be overwritten by the definitive file. Pull
    13       requests which include edits to this file in other repositories
    14       will be rejected.
    15  -->
    16  
    17  # stack ls (experimental)
    18  
    19  ```markdown
    20  Usage:	docker stack ls
    21  
    22  List stacks
    23  ```
    24  
    25  Lists the stacks.
    26  
    27  For example, the following command shows all stacks and some additional information:
    28  
    29  ```bash
    30  $ docker stack ls
    31  
    32  ID                 SERVICES
    33  vossibility-stack  6
    34  myapp              2
    35  ```
    36  
    37  ## Related information
    38  
    39  * [stack config](stack_config.md)
    40  * [stack deploy](stack_deploy.md)
    41  * [stack rm](stack_rm.md)
    42  * [stack ps](stack_ps.md)