mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-22 06:57:48 +00:00
commit
36d3c92006
@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
|
|||||||
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
||||||
This project adheres to [Semantic Versioning](http://semver.org/).
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## v6.7.4 - 2017-10-25
|
||||||
|
|
||||||
|
* Add preload to the CLI docs #702 [Tim Perry]
|
||||||
|
|
||||||
## v6.7.3 - 2017-10-25
|
## v6.7.3 - 2017-10-25
|
||||||
|
|
||||||
* Allow specifying `--commit=latest` for `resin preload` #701 [Alexis Svinartchouk]
|
* Allow specifying `--commit=latest` for `resin preload` #701 [Alexis Svinartchouk]
|
||||||
|
@ -85,6 +85,10 @@ module.exports =
|
|||||||
title: 'Config',
|
title: 'Config',
|
||||||
files: [ 'lib/actions/config.coffee' ]
|
files: [ 'lib/actions/config.coffee' ]
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
title: 'Preload',
|
||||||
|
files: [ 'lib/actions/preload.coffee' ]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
title: 'Settings',
|
title: 'Settings',
|
||||||
files: [ 'lib/actions/settings.coffee' ]
|
files: [ 'lib/actions/settings.coffee' ]
|
||||||
|
@ -117,6 +117,10 @@ environment variable (in the same standard URL format).
|
|||||||
- [config reconfigure](#config-reconfigure)
|
- [config reconfigure](#config-reconfigure)
|
||||||
- [config generate](#config-generate)
|
- [config generate](#config-generate)
|
||||||
|
|
||||||
|
- Preload
|
||||||
|
|
||||||
|
- [preload <image>](#preload-60-image-62-)
|
||||||
|
|
||||||
- Settings
|
- Settings
|
||||||
|
|
||||||
- [settings](#settings)
|
- [settings](#settings)
|
||||||
@ -1066,6 +1070,69 @@ custom device key - note that this is only supported on ResinOS 2.0.3+
|
|||||||
|
|
||||||
output
|
output
|
||||||
|
|
||||||
|
# Preload
|
||||||
|
|
||||||
|
## preload <image>
|
||||||
|
|
||||||
|
Warning: "resin preload" requires Docker to be correctly installed in
|
||||||
|
your shell environment. For more information (including Windows support)
|
||||||
|
please check the README here: https://github.com/resin-io/resin-cli .
|
||||||
|
|
||||||
|
Use this command to preload an application to a local disk image (or
|
||||||
|
Edison zip archive) with a built commit from Resin.io.
|
||||||
|
This can be used with cloud builds, or images deployed with resin deploy.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
$ resin preload resin.img --app 1234 --commit e1f2592fc6ee949e68756d4f4a48e49bff8d72a0 --splash-image some-image.png
|
||||||
|
$ resin preload resin.img
|
||||||
|
|
||||||
|
### Options
|
||||||
|
|
||||||
|
#### --app, -a <appId>
|
||||||
|
|
||||||
|
id of the application to preload
|
||||||
|
|
||||||
|
#### --commit, -c <hash>
|
||||||
|
|
||||||
|
a specific application commit to preload, use "latest" to specify the latest commit
|
||||||
|
(ignored if no appId is given)
|
||||||
|
|
||||||
|
#### --splash-image, -s <splashImage.png>
|
||||||
|
|
||||||
|
path to a png image to replace the splash screen
|
||||||
|
|
||||||
|
#### --dont-detect-flasher-type-images
|
||||||
|
|
||||||
|
Disables the flasher type images detection: treats all images as non flasher types
|
||||||
|
|
||||||
|
#### --dont-check-device-type
|
||||||
|
|
||||||
|
Disables check for matching device types in image and application
|
||||||
|
|
||||||
|
#### --docker, -P <docker>
|
||||||
|
|
||||||
|
Path to a local docker socket
|
||||||
|
|
||||||
|
#### --dockerHost, -h <dockerHost>
|
||||||
|
|
||||||
|
The address of the host containing the docker daemon
|
||||||
|
|
||||||
|
#### --dockerPort, -p <dockerPort>
|
||||||
|
|
||||||
|
The port on which the host docker daemon is listening
|
||||||
|
|
||||||
|
#### --ca <ca>
|
||||||
|
|
||||||
|
Docker host TLS certificate authority file
|
||||||
|
|
||||||
|
#### --cert <cert>
|
||||||
|
|
||||||
|
Docker host TLS certificate file
|
||||||
|
|
||||||
|
#### --key <key>
|
||||||
|
|
||||||
|
Docker host TLS key file
|
||||||
|
|
||||||
# Settings
|
# Settings
|
||||||
|
|
||||||
## settings
|
## settings
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "resin-cli",
|
"name": "resin-cli",
|
||||||
"version": "6.7.3",
|
"version": "6.7.4",
|
||||||
"description": "The official resin.io CLI tool",
|
"description": "The official resin.io CLI tool",
|
||||||
"main": "./build/actions/index.js",
|
"main": "./build/actions/index.js",
|
||||||
"homepage": "https://github.com/resin-io/resin-cli",
|
"homepage": "https://github.com/resin-io/resin-cli",
|
||||||
|
Loading…
Reference in New Issue
Block a user