mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-03-11 06:53:56 +00:00
Auto-merge for PR #827 via VersionBot
Remove explicit anchor links in CLI docs
This commit is contained in:
commit
1032d9927f
@ -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/).
|
||||||
|
|
||||||
|
## v7.1.1 - 2018-03-22
|
||||||
|
|
||||||
|
* Remove explicit anchor links in CLI docs #827 [Zach Walchuk]
|
||||||
|
|
||||||
## v7.1.0 - 2018-03-22
|
## v7.1.0 - 2018-03-22
|
||||||
|
|
||||||
* Warn early if deploying a multicontainer project to an incompatible app #818 [Akis Kesoglou]
|
* Warn early if deploying a multicontainer project to an incompatible app #818 [Akis Kesoglou]
|
||||||
|
@ -4,9 +4,7 @@ import * as utils from './utils';
|
|||||||
import { Document, Category, Command } from './doc-types';
|
import { Document, Category, Command } from './doc-types';
|
||||||
|
|
||||||
export function renderCommand(command: Command) {
|
export function renderCommand(command: Command) {
|
||||||
let result = `## <a name="${getAnchor(command)}"></a>${ent.encode(
|
let result = `## ${ent.encode(command.signature)}\n\n${command.help}\n`;
|
||||||
command.signature,
|
|
||||||
)}\n\n${command.help}\n`;
|
|
||||||
|
|
||||||
if (!_.isEmpty(command.options)) {
|
if (!_.isEmpty(command.options)) {
|
||||||
result += '\n### Options';
|
result += '\n### Options';
|
||||||
@ -42,8 +40,7 @@ function getAnchor(command: Command) {
|
|||||||
.replace(/>/g, '-')
|
.replace(/>/g, '-')
|
||||||
.replace(/\[/g, '-')
|
.replace(/\[/g, '-')
|
||||||
.replace(/\]/g, '-')
|
.replace(/\]/g, '-')
|
||||||
.replace(/--/g, '-')
|
.replace(/-+/g, '-')
|
||||||
.replace(/-$/, '')
|
|
||||||
.replace(/\.\.\./g, '')
|
.replace(/\.\.\./g, '')
|
||||||
.replace(/\|/g, '')
|
.replace(/\|/g, '')
|
||||||
.toLowerCase()
|
.toLowerCase()
|
||||||
|
210
doc/cli.markdown
210
doc/cli.markdown
@ -64,11 +64,11 @@ environment variable (in the same standard URL format).
|
|||||||
|
|
||||||
- Application
|
- Application
|
||||||
|
|
||||||
- [app create <name>](#app-create-name)
|
- [app create <name>](#app-create-name-)
|
||||||
- [apps](#apps)
|
- [apps](#apps)
|
||||||
- [app <name>](#app-name)
|
- [app <name>](#app-name-)
|
||||||
- [app restart <name>](#app-restart-name)
|
- [app restart <name>](#app-restart-name-)
|
||||||
- [app rm <name>](#app-rm-name)
|
- [app rm <name>](#app-rm-name-)
|
||||||
|
|
||||||
- Authentication
|
- Authentication
|
||||||
|
|
||||||
@ -80,31 +80,31 @@ environment variable (in the same standard URL format).
|
|||||||
- Device
|
- Device
|
||||||
|
|
||||||
- [devices](#devices)
|
- [devices](#devices)
|
||||||
- [device <uuid>](#device-uuid)
|
- [device <uuid>](#device-uuid-)
|
||||||
- [devices supported](#devices-supported)
|
- [devices supported](#devices-supported)
|
||||||
- [device register <application>](#device-register-application)
|
- [device register <application>](#device-register-application-)
|
||||||
- [device rm <uuid>](#device-rm-uuid)
|
- [device rm <uuid>](#device-rm-uuid-)
|
||||||
- [device identify <uuid>](#device-identify-uuid)
|
- [device identify <uuid>](#device-identify-uuid-)
|
||||||
- [device reboot <uuid>](#device-reboot-uuid)
|
- [device reboot <uuid>](#device-reboot-uuid-)
|
||||||
- [device shutdown <uuid>](#device-shutdown-uuid)
|
- [device shutdown <uuid>](#device-shutdown-uuid-)
|
||||||
- [device public-url enable <uuid>](#device-public-url-enable-uuid)
|
- [device public-url enable <uuid>](#device-public-url-enable-uuid-)
|
||||||
- [device public-url disable <uuid>](#device-public-url-disable-uuid)
|
- [device public-url disable <uuid>](#device-public-url-disable-uuid-)
|
||||||
- [device public-url <uuid>](#device-public-url-uuid)
|
- [device public-url <uuid>](#device-public-url-uuid-)
|
||||||
- [device public-url status <uuid>](#device-public-url-status-uuid)
|
- [device public-url status <uuid>](#device-public-url-status-uuid-)
|
||||||
- [device rename <uuid> [newName]](#device-rename-uuid--newname)
|
- [device rename <uuid> [newName]](#device-rename-uuid-newname-)
|
||||||
- [device move <uuid>](#device-move-uuid)
|
- [device move <uuid>](#device-move-uuid-)
|
||||||
- [device init](#device-init)
|
- [device init](#device-init)
|
||||||
|
|
||||||
- Environment Variables
|
- Environment Variables
|
||||||
|
|
||||||
- [envs](#envs)
|
- [envs](#envs)
|
||||||
- [env rm <id>](#env-rm-id)
|
- [env rm <id>](#env-rm-id-)
|
||||||
- [env add <key> [value]](#env-add-key--value)
|
- [env add <key> [value]](#env-add-key-value-)
|
||||||
- [env rename <id> <value>](#env-rename-id--value)
|
- [env rename <id> <value>](#env-rename-id-value-)
|
||||||
|
|
||||||
- Help
|
- Help
|
||||||
|
|
||||||
- [help [command...]](#help-command)
|
- [help [command...]](#help-command-)
|
||||||
|
|
||||||
- Information
|
- Information
|
||||||
|
|
||||||
@ -113,45 +113,45 @@ environment variable (in the same standard URL format).
|
|||||||
- Keys
|
- Keys
|
||||||
|
|
||||||
- [keys](#keys)
|
- [keys](#keys)
|
||||||
- [key <id>](#key-id)
|
- [key <id>](#key-id-)
|
||||||
- [key rm <id>](#key-rm-id)
|
- [key rm <id>](#key-rm-id-)
|
||||||
- [key add <name> [path]](#key-add-name--path)
|
- [key add <name> [path]](#key-add-name-path-)
|
||||||
|
|
||||||
- Logs
|
- Logs
|
||||||
|
|
||||||
- [logs <uuid>](#logs-uuid)
|
- [logs <uuid>](#logs-uuid-)
|
||||||
|
|
||||||
- Sync
|
- Sync
|
||||||
|
|
||||||
- [sync [uuid]](#sync-uuid)
|
- [sync [uuid]](#sync-uuid-)
|
||||||
|
|
||||||
- SSH
|
- SSH
|
||||||
|
|
||||||
- [ssh [uuid]](#ssh-uuid)
|
- [ssh [uuid]](#ssh-uuid-)
|
||||||
|
|
||||||
- Notes
|
- Notes
|
||||||
|
|
||||||
- [note <|note>](#note-note)
|
- [note <|note>](#note-note-)
|
||||||
|
|
||||||
- OS
|
- OS
|
||||||
|
|
||||||
- [os versions <type>](#os-versions-type)
|
- [os versions <type>](#os-versions-type-)
|
||||||
- [os download <type>](#os-download-type)
|
- [os download <type>](#os-download-type-)
|
||||||
- [os build-config <image> <device-type>](#os-build-config-image--device-type)
|
- [os build-config <image> <device-type>](#os-build-config-image-device-type-)
|
||||||
- [os configure <image> [uuid] [deviceApiKey]](#os-configure-image--uuid--deviceapikey)
|
- [os configure <image> [uuid] [deviceApiKey]](#os-configure-image-uuid-deviceapikey-)
|
||||||
- [os initialize <image>](#os-initialize-image)
|
- [os initialize <image>](#os-initialize-image-)
|
||||||
|
|
||||||
- Config
|
- Config
|
||||||
|
|
||||||
- [config read](#config-read)
|
- [config read](#config-read)
|
||||||
- [config write <key> <value>](#config-write-key--value)
|
- [config write <key> <value>](#config-write-key-value-)
|
||||||
- [config inject <file>](#config-inject-file)
|
- [config inject <file>](#config-inject-file-)
|
||||||
- [config reconfigure](#config-reconfigure)
|
- [config reconfigure](#config-reconfigure)
|
||||||
- [config generate](#config-generate)
|
- [config generate](#config-generate)
|
||||||
|
|
||||||
- Preload
|
- Preload
|
||||||
|
|
||||||
- [preload <image>](#preload-image)
|
- [preload <image>](#preload-image-)
|
||||||
|
|
||||||
- Settings
|
- Settings
|
||||||
|
|
||||||
@ -159,22 +159,22 @@ environment variable (in the same standard URL format).
|
|||||||
|
|
||||||
- Wizard
|
- Wizard
|
||||||
|
|
||||||
- [quickstart [name]](#quickstart-name)
|
- [quickstart [name]](#quickstart-name-)
|
||||||
|
|
||||||
- Local
|
- Local
|
||||||
|
|
||||||
- [local configure <target>](#local-configure-target)
|
- [local configure <target>](#local-configure-target-)
|
||||||
- [local flash <image>](#local-flash-image)
|
- [local flash <image>](#local-flash-image-)
|
||||||
- [local logs [deviceIp]](#local-logs-deviceip)
|
- [local logs [deviceIp]](#local-logs-deviceip-)
|
||||||
- [local scan](#local-scan)
|
- [local scan](#local-scan)
|
||||||
- [local ssh [deviceIp]](#local-ssh-deviceip)
|
- [local ssh [deviceIp]](#local-ssh-deviceip-)
|
||||||
- [local push [deviceIp]](#local-push-deviceip)
|
- [local push [deviceIp]](#local-push-deviceip-)
|
||||||
- [local stop [deviceIp]](#local-stop-deviceip)
|
- [local stop [deviceIp]](#local-stop-deviceip-)
|
||||||
|
|
||||||
- Deploy
|
- Deploy
|
||||||
|
|
||||||
- [build [source]](#build-source)
|
- [build [source]](#build-source-)
|
||||||
- [deploy <appName> [image]](#deploy-appname--image)
|
- [deploy <appName> [image]](#deploy-appname-image-)
|
||||||
|
|
||||||
- Utilities
|
- Utilities
|
||||||
|
|
||||||
@ -182,7 +182,7 @@ environment variable (in the same standard URL format).
|
|||||||
|
|
||||||
# Application
|
# Application
|
||||||
|
|
||||||
## <a name="#app-create-name"></a>app create <name>
|
## app create <name>
|
||||||
|
|
||||||
Use this command to create a new resin.io application.
|
Use this command to create a new resin.io application.
|
||||||
|
|
||||||
@ -204,7 +204,7 @@ Examples:
|
|||||||
|
|
||||||
application device type (Check available types with `resin devices supported`)
|
application device type (Check available types with `resin devices supported`)
|
||||||
|
|
||||||
## <a name="#apps"></a>apps
|
## apps
|
||||||
|
|
||||||
Use this command to list all your applications.
|
Use this command to list all your applications.
|
||||||
|
|
||||||
@ -215,7 +215,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin apps
|
$ resin apps
|
||||||
|
|
||||||
## <a name="#app-name"></a>app <name>
|
## app <name>
|
||||||
|
|
||||||
Use this command to show detailed information for a single application.
|
Use this command to show detailed information for a single application.
|
||||||
|
|
||||||
@ -223,7 +223,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin app MyApp
|
$ resin app MyApp
|
||||||
|
|
||||||
## <a name="#app-restart-name"></a>app restart <name>
|
## app restart <name>
|
||||||
|
|
||||||
Use this command to restart all devices that belongs to a certain application.
|
Use this command to restart all devices that belongs to a certain application.
|
||||||
|
|
||||||
@ -231,7 +231,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin app restart MyApp
|
$ resin app restart MyApp
|
||||||
|
|
||||||
## <a name="#app-rm-name"></a>app rm <name>
|
## app rm <name>
|
||||||
|
|
||||||
Use this command to remove a resin.io application.
|
Use this command to remove a resin.io application.
|
||||||
|
|
||||||
@ -251,7 +251,7 @@ confirm non interactively
|
|||||||
|
|
||||||
# Authentication
|
# Authentication
|
||||||
|
|
||||||
## <a name="#login"></a>login
|
## login
|
||||||
|
|
||||||
Use this command to login to your resin.io account.
|
Use this command to login to your resin.io account.
|
||||||
|
|
||||||
@ -294,7 +294,7 @@ email
|
|||||||
|
|
||||||
password
|
password
|
||||||
|
|
||||||
## <a name="#logout"></a>logout
|
## logout
|
||||||
|
|
||||||
Use this command to logout from your resin.io account.o
|
Use this command to logout from your resin.io account.o
|
||||||
|
|
||||||
@ -302,7 +302,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin logout
|
$ resin logout
|
||||||
|
|
||||||
## <a name="#signup"></a>signup
|
## signup
|
||||||
|
|
||||||
Use this command to signup for a resin.io account.
|
Use this command to signup for a resin.io account.
|
||||||
|
|
||||||
@ -317,7 +317,7 @@ Examples:
|
|||||||
$ resin whoami
|
$ resin whoami
|
||||||
johndoe
|
johndoe
|
||||||
|
|
||||||
## <a name="#whoami"></a>whoami
|
## whoami
|
||||||
|
|
||||||
Use this command to find out the current logged in username and email address.
|
Use this command to find out the current logged in username and email address.
|
||||||
|
|
||||||
@ -327,7 +327,7 @@ Examples:
|
|||||||
|
|
||||||
# Device
|
# Device
|
||||||
|
|
||||||
## <a name="#devices"></a>devices
|
## devices
|
||||||
|
|
||||||
Use this command to list all devices that belong to you.
|
Use this command to list all devices that belong to you.
|
||||||
|
|
||||||
@ -346,7 +346,7 @@ Examples:
|
|||||||
|
|
||||||
application name
|
application name
|
||||||
|
|
||||||
## <a name="#device-uuid"></a>device <uuid>
|
## device <uuid>
|
||||||
|
|
||||||
Use this command to show information about a single device.
|
Use this command to show information about a single device.
|
||||||
|
|
||||||
@ -354,7 +354,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device 7cf02a6
|
$ resin device 7cf02a6
|
||||||
|
|
||||||
## <a name="#devices-supported"></a>devices supported
|
## devices supported
|
||||||
|
|
||||||
Use this command to get the list of all supported devices
|
Use this command to get the list of all supported devices
|
||||||
|
|
||||||
@ -362,7 +362,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin devices supported
|
$ resin devices supported
|
||||||
|
|
||||||
## <a name="#device-register-application"></a>device register <application>
|
## device register <application>
|
||||||
|
|
||||||
Use this command to register a device to an application.
|
Use this command to register a device to an application.
|
||||||
|
|
||||||
@ -384,7 +384,7 @@ custom uuid
|
|||||||
|
|
||||||
custom device key - note that this is only supported on ResinOS 2.0.3+
|
custom device key - note that this is only supported on ResinOS 2.0.3+
|
||||||
|
|
||||||
## <a name="#device-rm-uuid"></a>device rm <uuid>
|
## device rm <uuid>
|
||||||
|
|
||||||
Use this command to remove a device from resin.io.
|
Use this command to remove a device from resin.io.
|
||||||
|
|
||||||
@ -402,7 +402,7 @@ Examples:
|
|||||||
|
|
||||||
confirm non interactively
|
confirm non interactively
|
||||||
|
|
||||||
## <a name="#device-identify-uuid"></a>device identify <uuid>
|
## device identify <uuid>
|
||||||
|
|
||||||
Use this command to identify a device.
|
Use this command to identify a device.
|
||||||
|
|
||||||
@ -412,7 +412,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device identify 23c73a1
|
$ resin device identify 23c73a1
|
||||||
|
|
||||||
## <a name="#device-reboot-uuid"></a>device reboot <uuid>
|
## device reboot <uuid>
|
||||||
|
|
||||||
Use this command to remotely reboot a device
|
Use this command to remotely reboot a device
|
||||||
|
|
||||||
@ -426,7 +426,7 @@ Examples:
|
|||||||
|
|
||||||
force action if the update lock is set
|
force action if the update lock is set
|
||||||
|
|
||||||
## <a name="#device-shutdown-uuid"></a>device shutdown <uuid>
|
## device shutdown <uuid>
|
||||||
|
|
||||||
Use this command to remotely shutdown a device
|
Use this command to remotely shutdown a device
|
||||||
|
|
||||||
@ -440,7 +440,7 @@ Examples:
|
|||||||
|
|
||||||
force action if the update lock is set
|
force action if the update lock is set
|
||||||
|
|
||||||
## <a name="#device-public-url-enable-uuid"></a>device public-url enable <uuid>
|
## device public-url enable <uuid>
|
||||||
|
|
||||||
Use this command to enable public URL for a device
|
Use this command to enable public URL for a device
|
||||||
|
|
||||||
@ -448,7 +448,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device public-url enable 23c73a1
|
$ resin device public-url enable 23c73a1
|
||||||
|
|
||||||
## <a name="#device-public-url-disable-uuid"></a>device public-url disable <uuid>
|
## device public-url disable <uuid>
|
||||||
|
|
||||||
Use this command to disable public URL for a device
|
Use this command to disable public URL for a device
|
||||||
|
|
||||||
@ -456,7 +456,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device public-url disable 23c73a1
|
$ resin device public-url disable 23c73a1
|
||||||
|
|
||||||
## <a name="#device-public-url-uuid"></a>device public-url <uuid>
|
## device public-url <uuid>
|
||||||
|
|
||||||
Use this command to get the public URL of a device
|
Use this command to get the public URL of a device
|
||||||
|
|
||||||
@ -464,7 +464,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device public-url 23c73a1
|
$ resin device public-url 23c73a1
|
||||||
|
|
||||||
## <a name="#device-public-url-status-uuid"></a>device public-url status <uuid>
|
## device public-url status <uuid>
|
||||||
|
|
||||||
Use this command to determine if public URL is enabled for a device
|
Use this command to determine if public URL is enabled for a device
|
||||||
|
|
||||||
@ -472,7 +472,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin device public-url status 23c73a1
|
$ resin device public-url status 23c73a1
|
||||||
|
|
||||||
## <a name="#device-rename-uuid--newname"></a>device rename <uuid> [newName]
|
## device rename <uuid> [newName]
|
||||||
|
|
||||||
Use this command to rename a device.
|
Use this command to rename a device.
|
||||||
|
|
||||||
@ -483,7 +483,7 @@ Examples:
|
|||||||
$ resin device rename 7cf02a6
|
$ resin device rename 7cf02a6
|
||||||
$ resin device rename 7cf02a6 MyPi
|
$ resin device rename 7cf02a6 MyPi
|
||||||
|
|
||||||
## <a name="#device-move-uuid"></a>device move <uuid>
|
## device move <uuid>
|
||||||
|
|
||||||
Use this command to move a device to another application you own.
|
Use this command to move a device to another application you own.
|
||||||
|
|
||||||
@ -500,7 +500,7 @@ Examples:
|
|||||||
|
|
||||||
application name
|
application name
|
||||||
|
|
||||||
## <a name="#device-init"></a>device init
|
## device init
|
||||||
|
|
||||||
Use this command to download the OS image of a certain application and write it to an SD Card.
|
Use this command to download the OS image of a certain application and write it to an SD Card.
|
||||||
|
|
||||||
@ -544,7 +544,7 @@ path to the config JSON file, see `resin os build-config`
|
|||||||
|
|
||||||
# Environment Variables
|
# Environment Variables
|
||||||
|
|
||||||
## <a name="#envs"></a>envs
|
## envs
|
||||||
|
|
||||||
Use this command to list all environment variables for
|
Use this command to list all environment variables for
|
||||||
a particular application or device.
|
a particular application or device.
|
||||||
@ -573,7 +573,7 @@ device uuid
|
|||||||
|
|
||||||
show private environment variables
|
show private environment variables
|
||||||
|
|
||||||
## <a name="#env-rm-id"></a>env rm <id>
|
## env rm <id>
|
||||||
|
|
||||||
Use this command to remove an environment variable from an application.
|
Use this command to remove an environment variable from an application.
|
||||||
|
|
||||||
@ -600,7 +600,7 @@ confirm non interactively
|
|||||||
|
|
||||||
device
|
device
|
||||||
|
|
||||||
## <a name="#env-add-key--value"></a>env add <key> [value]
|
## env add <key> [value]
|
||||||
|
|
||||||
Use this command to add an enviroment variable to an application.
|
Use this command to add an enviroment variable to an application.
|
||||||
|
|
||||||
@ -629,7 +629,7 @@ application name
|
|||||||
|
|
||||||
device uuid
|
device uuid
|
||||||
|
|
||||||
## <a name="#env-rename-id--value"></a>env rename <id> <value>
|
## env rename <id> <value>
|
||||||
|
|
||||||
Use this command to rename an enviroment variable from an application.
|
Use this command to rename an enviroment variable from an application.
|
||||||
|
|
||||||
@ -648,7 +648,7 @@ device
|
|||||||
|
|
||||||
# Help
|
# Help
|
||||||
|
|
||||||
## <a name="#help-command"></a>help [command...]
|
## help [command...]
|
||||||
|
|
||||||
Get detailed help for an specific command.
|
Get detailed help for an specific command.
|
||||||
|
|
||||||
@ -665,13 +665,13 @@ show additional commands
|
|||||||
|
|
||||||
# Information
|
# Information
|
||||||
|
|
||||||
## <a name="#version"></a>version
|
## version
|
||||||
|
|
||||||
Display the Resin CLI version.
|
Display the Resin CLI version.
|
||||||
|
|
||||||
# Keys
|
# Keys
|
||||||
|
|
||||||
## <a name="#keys"></a>keys
|
## keys
|
||||||
|
|
||||||
Use this command to list all your SSH keys.
|
Use this command to list all your SSH keys.
|
||||||
|
|
||||||
@ -679,7 +679,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin keys
|
$ resin keys
|
||||||
|
|
||||||
## <a name="#key-id"></a>key <id>
|
## key <id>
|
||||||
|
|
||||||
Use this command to show information about a single SSH key.
|
Use this command to show information about a single SSH key.
|
||||||
|
|
||||||
@ -687,7 +687,7 @@ Examples:
|
|||||||
|
|
||||||
$ resin key 17
|
$ resin key 17
|
||||||
|
|
||||||
## <a name="#key-rm-id"></a>key rm <id>
|
## key rm <id>
|
||||||
|
|
||||||
Use this command to remove a SSH key from resin.io.
|
Use this command to remove a SSH key from resin.io.
|
||||||
|
|
||||||
@ -705,7 +705,7 @@ Examples:
|
|||||||
|
|
||||||
confirm non interactively
|
confirm non interactively
|
||||||
|
|
||||||
## <a name="#key-add-name--path"></a>key add <name> [path]
|
## key add <name> [path]
|
||||||
|
|
||||||
Use this command to associate a new SSH key with your account.
|
Use this command to associate a new SSH key with your account.
|
||||||
|
|
||||||
@ -719,7 +719,7 @@ Examples:
|
|||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
|
|
||||||
## <a name="#logs-uuid"></a>logs <uuid>
|
## logs <uuid>
|
||||||
|
|
||||||
Use this command to show logs for a specific device.
|
Use this command to show logs for a specific device.
|
||||||
|
|
||||||
@ -744,7 +744,7 @@ continuously stream output
|
|||||||
|
|
||||||
# Sync
|
# Sync
|
||||||
|
|
||||||
## <a name="#sync-uuid"></a>sync [uuid]
|
## sync [uuid]
|
||||||
|
|
||||||
Warning: 'resin sync' requires an openssh-compatible client and 'rsync' to
|
Warning: 'resin sync' requires an openssh-compatible client and 'rsync' to
|
||||||
be correctly installed in your shell environment. For more information (including
|
be correctly installed in your shell environment. For more information (including
|
||||||
@ -825,7 +825,7 @@ increase verbosity
|
|||||||
|
|
||||||
# SSH
|
# SSH
|
||||||
|
|
||||||
## <a name="#ssh-uuid"></a>ssh [uuid]
|
## ssh [uuid]
|
||||||
|
|
||||||
Warning: 'resin ssh' requires an openssh-compatible client to be correctly
|
Warning: 'resin ssh' requires an openssh-compatible client to be correctly
|
||||||
installed in your shell environment. For more information (including Windows
|
installed in your shell environment. For more information (including Windows
|
||||||
@ -862,7 +862,7 @@ don't use the proxy configuration for this connection. Only makes sense if you'v
|
|||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
|
|
||||||
## <a name="#note-note"></a>note <|note>
|
## note <|note>
|
||||||
|
|
||||||
Use this command to set or update a device note.
|
Use this command to set or update a device note.
|
||||||
|
|
||||||
@ -883,7 +883,7 @@ device uuid
|
|||||||
|
|
||||||
# OS
|
# OS
|
||||||
|
|
||||||
## <a name="#os-versions-type"></a>os versions <type>
|
## os versions <type>
|
||||||
|
|
||||||
Use this command to show the available resinOS versions for a certain device type.
|
Use this command to show the available resinOS versions for a certain device type.
|
||||||
Check available types with `resin devices supported`
|
Check available types with `resin devices supported`
|
||||||
@ -892,7 +892,7 @@ Example:
|
|||||||
|
|
||||||
$ resin os versions raspberrypi3
|
$ resin os versions raspberrypi3
|
||||||
|
|
||||||
## <a name="#os-download-type"></a>os download <type>
|
## os download <type>
|
||||||
|
|
||||||
Use this command to download an unconfigured os image for a certain device type.
|
Use this command to download an unconfigured os image for a certain device type.
|
||||||
Check available types with `resin devices supported`
|
Check available types with `resin devices supported`
|
||||||
@ -927,7 +927,7 @@ or 'default' (excludes pre-releases if at least one stable version is available)
|
|||||||
or 'recommended' (excludes pre-releases, will fail if only pre-release versions are available),
|
or 'recommended' (excludes pre-releases, will fail if only pre-release versions are available),
|
||||||
or 'menu' (will show the interactive menu)
|
or 'menu' (will show the interactive menu)
|
||||||
|
|
||||||
## <a name="#os-build-config-image--device-type"></a>os build-config <image> <device-type>
|
## os build-config <image> <device-type>
|
||||||
|
|
||||||
Use this command to prebuild the OS config once and skip the interactive part of `resin os configure`.
|
Use this command to prebuild the OS config once and skip the interactive part of `resin os configure`.
|
||||||
|
|
||||||
@ -946,7 +946,7 @@ show advanced configuration options
|
|||||||
|
|
||||||
the path to the output JSON file
|
the path to the output JSON file
|
||||||
|
|
||||||
## <a name="#os-configure-image--uuid--deviceapikey"></a>os configure <image> [uuid] [deviceApiKey]
|
## os configure <image> [uuid] [deviceApiKey]
|
||||||
|
|
||||||
Use this command to configure a previously downloaded operating system image for
|
Use this command to configure a previously downloaded operating system image for
|
||||||
the specific device or for an application generally.
|
the specific device or for an application generally.
|
||||||
@ -985,7 +985,7 @@ custom device key - note that this is only supported on ResinOS 2.0.3+
|
|||||||
|
|
||||||
path to the config JSON file, see `resin os build-config`
|
path to the config JSON file, see `resin os build-config`
|
||||||
|
|
||||||
## <a name="#os-initialize-image"></a>os initialize <image>
|
## os initialize <image>
|
||||||
|
|
||||||
Use this command to initialize a device with previously configured operating system image.
|
Use this command to initialize a device with previously configured operating system image.
|
||||||
|
|
||||||
@ -1012,7 +1012,7 @@ the drive to write the image to, like `/dev/sdb` or `/dev/mmcblk0`. Careful with
|
|||||||
|
|
||||||
# Config
|
# Config
|
||||||
|
|
||||||
## <a name="#config-read"></a>config read
|
## config read
|
||||||
|
|
||||||
Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device"
|
Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device"
|
||||||
|
|
||||||
@ -1031,7 +1031,7 @@ device type (Check available types with `resin devices supported`)
|
|||||||
|
|
||||||
drive
|
drive
|
||||||
|
|
||||||
## <a name="#config-write-key--value"></a>config write <key> <value>
|
## config write <key> <value>
|
||||||
|
|
||||||
Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device
|
Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device
|
||||||
|
|
||||||
@ -1051,7 +1051,7 @@ device type (Check available types with `resin devices supported`)
|
|||||||
|
|
||||||
drive
|
drive
|
||||||
|
|
||||||
## <a name="#config-inject-file"></a>config inject <file>
|
## config inject <file>
|
||||||
|
|
||||||
Use this command to inject a config.json file to the mounted filesystem
|
Use this command to inject a config.json file to the mounted filesystem
|
||||||
(e.g. SD card or mounted resinOS image) of a provisioned device"
|
(e.g. SD card or mounted resinOS image) of a provisioned device"
|
||||||
@ -1071,7 +1071,7 @@ device type (Check available types with `resin devices supported`)
|
|||||||
|
|
||||||
drive
|
drive
|
||||||
|
|
||||||
## <a name="#config-reconfigure"></a>config reconfigure
|
## config reconfigure
|
||||||
|
|
||||||
Use this command to reconfigure a provisioned device
|
Use this command to reconfigure a provisioned device
|
||||||
|
|
||||||
@ -1095,7 +1095,7 @@ drive
|
|||||||
|
|
||||||
show advanced commands
|
show advanced commands
|
||||||
|
|
||||||
## <a name="#config-generate"></a>config generate
|
## config generate
|
||||||
|
|
||||||
Use this command to generate a config.json for a device or application.
|
Use this command to generate a config.json for a device or application.
|
||||||
|
|
||||||
@ -1148,7 +1148,7 @@ how frequently (in minutes) to poll for application updates
|
|||||||
|
|
||||||
# Preload
|
# Preload
|
||||||
|
|
||||||
## <a name="#preload-image"></a>preload <image>
|
## preload <image>
|
||||||
|
|
||||||
Warning: "resin preload" requires Docker to be correctly installed in
|
Warning: "resin preload" requires Docker to be correctly installed in
|
||||||
your shell environment. For more information (including Windows support)
|
your shell environment. For more information (including Windows support)
|
||||||
@ -1206,7 +1206,7 @@ Docker host TLS key file
|
|||||||
|
|
||||||
# Settings
|
# Settings
|
||||||
|
|
||||||
## <a name="#settings"></a>settings
|
## settings
|
||||||
|
|
||||||
Use this command to display detected settings
|
Use this command to display detected settings
|
||||||
|
|
||||||
@ -1216,7 +1216,7 @@ Examples:
|
|||||||
|
|
||||||
# Wizard
|
# Wizard
|
||||||
|
|
||||||
## <a name="#quickstart-name"></a>quickstart [name]
|
## quickstart [name]
|
||||||
|
|
||||||
Use this command to run a friendly wizard to get started with resin.io.
|
Use this command to run a friendly wizard to get started with resin.io.
|
||||||
|
|
||||||
@ -1234,7 +1234,7 @@ Examples:
|
|||||||
|
|
||||||
# Local
|
# Local
|
||||||
|
|
||||||
## <a name="#local-configure-target"></a>local configure <target>
|
## local configure <target>
|
||||||
|
|
||||||
Use this command to configure or reconfigure a resinOS drive or image.
|
Use this command to configure or reconfigure a resinOS drive or image.
|
||||||
|
|
||||||
@ -1243,7 +1243,7 @@ Examples:
|
|||||||
$ resin local configure /dev/sdc
|
$ resin local configure /dev/sdc
|
||||||
$ resin local configure path/to/image.img
|
$ resin local configure path/to/image.img
|
||||||
|
|
||||||
## <a name="#local-flash-image"></a>local flash <image>
|
## local flash <image>
|
||||||
|
|
||||||
Use this command to flash a resinOS image to a drive.
|
Use this command to flash a resinOS image to a drive.
|
||||||
|
|
||||||
@ -1263,7 +1263,7 @@ confirm non-interactively
|
|||||||
|
|
||||||
drive
|
drive
|
||||||
|
|
||||||
## <a name="#local-logs-deviceip"></a>local logs [deviceIp]
|
## local logs [deviceIp]
|
||||||
|
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
@ -1284,7 +1284,7 @@ follow log
|
|||||||
|
|
||||||
name of container to get logs from
|
name of container to get logs from
|
||||||
|
|
||||||
## <a name="#local-scan"></a>local scan
|
## local scan
|
||||||
|
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
@ -1303,7 +1303,7 @@ Display full info
|
|||||||
|
|
||||||
Scan timeout in seconds
|
Scan timeout in seconds
|
||||||
|
|
||||||
## <a name="#local-ssh-deviceip"></a>local ssh [deviceIp]
|
## local ssh [deviceIp]
|
||||||
|
|
||||||
Warning: 'resin local ssh' requires an openssh-compatible client to be correctly
|
Warning: 'resin local ssh' requires an openssh-compatible client to be correctly
|
||||||
installed in your shell environment. For more information (including Windows
|
installed in your shell environment. For more information (including Windows
|
||||||
@ -1342,7 +1342,7 @@ name of container to access
|
|||||||
|
|
||||||
ssh port number (default: 22222)
|
ssh port number (default: 22222)
|
||||||
|
|
||||||
## <a name="#local-push-deviceip"></a>local push [deviceIp]
|
## local push [deviceIp]
|
||||||
|
|
||||||
Warning: 'resin local push' requires an openssh-compatible client and 'rsync' to
|
Warning: 'resin local push' requires an openssh-compatible client and 'rsync' to
|
||||||
be correctly installed in your shell environment. For more information (including
|
be correctly installed in your shell environment. For more information (including
|
||||||
@ -1439,7 +1439,7 @@ force a container build and run
|
|||||||
|
|
||||||
environment variable (e.g. --env 'ENV=value'). Multiple --env parameters are supported.
|
environment variable (e.g. --env 'ENV=value'). Multiple --env parameters are supported.
|
||||||
|
|
||||||
## <a name="#local-stop-deviceip"></a>local stop [deviceIp]
|
## local stop [deviceIp]
|
||||||
|
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
@ -1462,7 +1462,7 @@ name of container to stop
|
|||||||
|
|
||||||
# Deploy
|
# Deploy
|
||||||
|
|
||||||
## <a name="#build-source"></a>build [source]
|
## build [source]
|
||||||
|
|
||||||
Use this command to build an image or a complete multicontainer project
|
Use this command to build an image or a complete multicontainer project
|
||||||
with the provided docker daemon.
|
with the provided docker daemon.
|
||||||
@ -1552,7 +1552,7 @@ Don't use docker layer caching when building
|
|||||||
|
|
||||||
Squash newly built layers into a single new layer
|
Squash newly built layers into a single new layer
|
||||||
|
|
||||||
## <a name="#deploy-appname--image"></a>deploy <appName> [image]
|
## deploy <appName> [image]
|
||||||
|
|
||||||
Use this command to deploy an image or a complete multicontainer project
|
Use this command to deploy an image or a complete multicontainer project
|
||||||
to an application, optionally building it first.
|
to an application, optionally building it first.
|
||||||
@ -1646,7 +1646,7 @@ Squash newly built layers into a single new layer
|
|||||||
|
|
||||||
# Utilities
|
# Utilities
|
||||||
|
|
||||||
## <a name="#util-available-drives"></a>util available-drives
|
## util available-drives
|
||||||
|
|
||||||
Use this command to list your machine's drives usable for writing the OS image to.
|
Use this command to list your machine's drives usable for writing the OS image to.
|
||||||
Skips the system drives.
|
Skips the system drives.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "resin-cli",
|
"name": "resin-cli",
|
||||||
"version": "7.1.0",
|
"version": "7.1.1",
|
||||||
"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…
x
Reference in New Issue
Block a user