ls

boxfuseLs

Lists the Images present on your machine or in the CloudCaptain Vault.

Usage: gradle boxfuseLs

> gradle boxfuseLs -Dboxfuse.app=

Available Images:
+-----------+---------------+-------+---------+--------------+------------+---------+---------------------+
| Image     |    Payload    | Debug |  Java   |  AppServer   |   Ports    |  Size   |    Generated at     |
+-----------+---------------+-------+---------+--------------+------------+---------+---------------------+
| hello:1.0 | hello-1.0.war | false | 8.20.26 | Tomcat 8.0.9 | http -> 80 | 48143 K | 2015-03-03 19:04:56 |
+-----------+---------------+-------+---------+--------------+------------+---------+---------------------+
Total: 1

Class name

com.boxfuse.client.gradle.task.LsTask

Properties

Plugin Parameter Gradle/System property Default Description
user boxfuse.user Required - Your CloudCaptain Client user. Also configurable via the BOXFUSE_USER environment variable
secret boxfuse.secret Required - Your CloudCaptain Client secret. Also configurable via the BOXFUSE_SECRET environment variable
app boxfuse.app Lists only the Images for this App
image boxfuse.image Lists only this Image
vault boxfuse.vault false Lists the Images in the CloudCaptain Vault instead of the ones present on your local machine

Sample Configuration

boxfuse {
    user='1234567890abcdef1234567890abcdef12345678'
    secret='ABCDEFGHIJKL1234567abcdefghijklmnopqrstu'
    app='myapp'
    image='myapp:123'
    vault=true
}

push