image
Usage
bx image [-a] [--help] <coordinates>
Parameters and inputs
- Parameters
- Inputs
| Shorthand | Long version | Description |
|---|---|---|
-a | --all | Print all information available |
--help | Display this help message and exit |
| Input | Description | Required |
|---|---|---|
<coordinates> | Image coordinates | true |
Example
Show image manifest
$ bx image batchx@tutorial/hello-world:1.0.1
{
"name": "tutorial/hello-world",
"title": "BatchX Hello World",
"schema": {
"input": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"yourName": {
"type": "string",
"required": true,
"description": "Your name"
}
}
},
"output": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": false,
"properties": {
"responseFile": {
"required": true,
"type": "string",
"format": "file",
"description": "Hello World response file"
}
}
}
},
"author": "BatchX",
"version": "1.0.1",
"runtime": {
"minMem": 1000
}
}
Show all image information
$ bx image -a batchx@tutorial/hello-world:1.0.1
{
"environment": "batchx",
"name": "tutorial/hello-world",
"version": "1.0.1",
"source": "079621346490.dkr.ecr.eu-west-1.amazonaws.com/private/tutorial:helloworld@sha256:140ec55b0397ca393b7ca7cfb1bb56c7f8adb34cc03772b30ae7930f411b87c4",
"manifestVersion": "io.batchx.manifest-02",
"manifest": "{\"name\":\"tutorial/hello-world\",\"title\":\"BatchX Hello World\",\"schema\":{\"input\":{\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"type\":\"object\",\"additionalProperties\":false,\"properties\":{\"yourName\":{\"type\":\"string\",\"required\":true,\"description\":\"Your name\"}}},\"output\":{\"$schema\":\"http://json-schema.org/draft-07/schema#\",\"type\":\"object\",\"additionalProperties\":false,\"properties\":{\"responseFile\":{\"required\":true,\"type\":\"string\",\"format\":\"file\",\"description\":\"Hello World response file\"}}}},\"author\":\"BatchX\",\"version\":\"1.0.1\",\"runtime\":{\"minMem\":1000}}",
"platformArchitecture": "amd64",
"platformOs": "linux",
"size": "27534638",
"tsImport": "1587724269933",
"by": "david"
}