2015-04-16 13:34:40 +00:00
# Resin CLI Documentation
This tool allows you to interact with the resin.io api from the comfort of your command line.
2017-01-18 15:57:52 +00:00
Please make sure your system meets the requirements as specified in the [README ](https://github.com/resin-io/resin-cli ).
2018-03-12 19:06:21 +00:00
## Install the CLI
2015-04-16 13:34:40 +00:00
2018-03-12 19:06:21 +00:00
### Npm install
2015-04-16 13:34:40 +00:00
2018-03-12 19:06:21 +00:00
The best supported way to install the CLI is from npm:
$ npm install resin-cli -g --production --unsafe-perm
`--unsafe-perm` is only required on systems where the global install directory is not user-writable.
This allows npm install steps to download and save prebuilt native binaries. You may be able to omit it,
especially if you're using a user-managed node install such as [nvm ](https://github.com/creationix/nvm ).
### Standalone install
Alternatively, if you don't have a node or pre-gyp environment, you can still install the CLI as a standalone
binary. **This is in experimental and may not work perfectly yet in all environments** , but works well in
initial cross-platform testing, so it may be useful, and we'd love your feedback if you hit any issues.
To install the CLI as a standalone binary:
* Download the latest zip for your OS from https://github.com/resin-io/resin-cli/releases.
* Extract the contents, putting the `resin-cli` folder somewhere appropriate for your system (e.g. `C:/resin-cli` , `/usr/local/lib/resin-cli` , etc).
* Add the `resin-cli` folder to your `PATH` . (
[Windows instructions ](https://www.computerhope.com/issues/ch000549.htm ),
[Linux instructions ](https://stackoverflow.com/questions/14637979/how-to-permanently-set-path-on-linux-unix ),
[OSX instructions ](https://stackoverflow.com/questions/22465332/setting-path-environment-variable-in-osx-permanently ))
* Running `resin` in a fresh command line should print the resin CLI help.
To update in future, simply download a new release and replace the extracted folder.
Have any problems, or see any unexpected behaviour? Please file an issue!
## Getting started
Once you have the CLI installed, you'll need to log in, so it can access everything in your resin.io account.
To authenticate yourself, run:
2015-04-16 13:34:40 +00:00
$ resin login
2018-03-12 19:06:21 +00:00
You now have access to all the commands referenced below.
2015-04-16 13:34:40 +00:00
2017-04-26 13:16:06 +00:00
## Proxy support
The CLI does support HTTP(S) proxies.
You can configure the proxy using several methods (in order of their precedence):
* set the `RESINRC_PROXY` environment variable in the URL format (with protocol, host, port, and optionally the basic auth),
* use the [resin config file ](https://www.npmjs.com/package/resin-settings-client#documentation ) (project-specific or user-level)
and set the `proxy` setting. This can be:
* a string in the URL format,
* or an object following [this format ](https://www.npmjs.com/package/global-tunnel-ng#options ), which allows more control,
* or set the conventional `https_proxy` / `HTTPS_PROXY` / `http_proxy` / `HTTP_PROXY`
environment variable (in the same standard URL format).
2015-04-16 13:34:40 +00:00
# Table of contents
2018-04-04 12:42:57 +00:00
- Api keys
- [api-key generate <name> ](#api-key-generate-name- )
2015-04-16 13:34:40 +00:00
- Application
2018-03-20 17:43:26 +00:00
- [app create <name> ](#app-create-name- )
2015-07-07 22:01:25 +00:00
- [apps ](#apps )
2018-03-20 17:43:26 +00:00
- [app <name> ](#app-name- )
- [app restart <name> ](#app-restart-name- )
- [app rm <name> ](#app-rm-name- )
2015-04-16 13:34:40 +00:00
- Authentication
2015-11-11 12:45:38 +00:00
- [login ](#login )
2015-07-07 22:01:25 +00:00
- [logout ](#logout )
- [signup ](#signup )
- [whoami ](#whoami )
2015-04-16 13:34:40 +00:00
- Device
2015-07-07 22:01:25 +00:00
- [devices ](#devices )
2018-03-20 17:43:26 +00:00
- [device <uuid> ](#device-uuid- )
2016-09-25 23:51:32 +00:00
- [devices supported ](#devices-supported )
2018-03-20 17:43:26 +00:00
- [device register <application> ](#device-register-application- )
- [device rm <uuid> ](#device-rm-uuid- )
- [device identify <uuid> ](#device-identify-uuid- )
- [device reboot <uuid> ](#device-reboot-uuid- )
- [device shutdown <uuid> ](#device-shutdown-uuid- )
- [device public-url enable <uuid> ](#device-public-url-enable-uuid- )
- [device public-url disable <uuid> ](#device-public-url-disable-uuid- )
- [device public-url <uuid> ](#device-public-url-uuid- )
- [device public-url status <uuid> ](#device-public-url-status-uuid- )
- [device rename < uuid> [newName]](#device-rename-uuid-newname-)
- [device move <uuid> ](#device-move-uuid- )
2015-09-29 15:10:33 +00:00
- [device init ](#device-init )
2015-04-16 13:34:40 +00:00
- Environment Variables
2015-07-07 22:01:25 +00:00
- [envs ](#envs )
2018-03-20 17:43:26 +00:00
- [env rm <id> ](#env-rm-id- )
- [env add < key> [value]](#env-add-key-value-)
- [env rename <id> <value> ](#env-rename-id-value- )
2015-04-16 13:34:40 +00:00
- Help
2018-03-20 17:43:26 +00:00
- [help [command...]](#help-command-)
2015-04-16 13:34:40 +00:00
- Information
2015-07-07 22:01:25 +00:00
- [version ](#version )
2015-04-16 13:34:40 +00:00
- Keys
2015-07-07 22:01:25 +00:00
- [keys ](#keys )
2018-03-20 17:43:26 +00:00
- [key <id> ](#key-id- )
- [key rm <id> ](#key-rm-id- )
- [key add < name> [path]](#key-add-name-path-)
2015-04-16 13:34:40 +00:00
- Logs
2018-03-20 17:43:26 +00:00
- [logs <uuid> ](#logs-uuid- )
2015-04-16 13:34:40 +00:00
2016-03-28 13:25:40 +00:00
- Sync
2018-03-20 17:43:26 +00:00
- [sync [uuid]](#sync-uuid-)
2016-03-28 13:25:40 +00:00
2016-04-24 19:52:41 +00:00
- SSH
2018-03-20 17:43:26 +00:00
- [ssh [uuid]](#ssh-uuid-)
2016-04-24 19:52:41 +00:00
2015-04-16 13:34:40 +00:00
- Notes
2018-03-20 17:43:26 +00:00
- [note <|note> ](#note-note- )
2015-04-16 13:34:40 +00:00
2015-09-29 17:03:14 +00:00
- OS
2018-03-20 17:43:26 +00:00
- [os versions <type> ](#os-versions-type- )
- [os download <type> ](#os-download-type- )
- [os build-config <image> <device-type> ](#os-build-config-image-device-type- )
- [os configure < image> [uuid] [deviceApiKey]](#os-configure-image-uuid-deviceapikey-)
- [os initialize <image> ](#os-initialize-image- )
2015-09-29 17:03:14 +00:00
2015-11-10 16:53:34 +00:00
- Config
- [config read ](#config-read )
2018-03-20 17:43:26 +00:00
- [config write <key> <value> ](#config-write-key-value- )
- [config inject <file> ](#config-inject-file- )
2015-11-11 14:38:45 +00:00
- [config reconfigure ](#config-reconfigure )
2016-03-28 13:25:40 +00:00
- [config generate ](#config-generate )
2015-11-10 16:53:34 +00:00
2017-10-25 11:17:07 +00:00
- Preload
2018-03-20 17:43:26 +00:00
- [preload <image> ](#preload-image- )
2017-10-25 11:17:07 +00:00
2018-06-26 16:59:44 +00:00
- Push
- [push <application> ](#push-application- )
2015-11-16 02:08:02 +00:00
- Settings
- [settings ](#settings )
2015-09-01 17:01:47 +00:00
- Wizard
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
- [quickstart [name]](#quickstart-name-)
2015-04-16 13:34:40 +00:00
2017-04-11 13:25:54 +00:00
- Local
2018-03-20 17:43:26 +00:00
- [local configure <target> ](#local-configure-target- )
- [local flash <image> ](#local-flash-image- )
- [local logs [deviceIp]](#local-logs-deviceip-)
2017-04-11 13:25:54 +00:00
- [local scan ](#local-scan )
2018-03-20 17:43:26 +00:00
- [local ssh [deviceIp]](#local-ssh-deviceip-)
- [local push [deviceIp]](#local-push-deviceip-)
- [local stop [deviceIp]](#local-stop-deviceip-)
2017-04-11 13:25:54 +00:00
2017-04-26 12:34:40 +00:00
- Deploy
2018-03-20 17:43:26 +00:00
- [build [source]](#build-source-)
- [deploy < appName> [image]](#deploy-appname-image-)
2017-04-26 12:34:40 +00:00
2017-06-14 21:23:39 +00:00
- Utilities
- [util available-drives ](#util-available-drives )
2018-04-04 12:42:57 +00:00
# Api keys
## api-key generate <name>
This command generates a new API key for the current user, with the given
name. The key will be logged to the console.
This key can be used to log into the CLI using 'resin login --token < key > ',
or to authenticate requests to the API with an 'Authorization: Bearer < key > ' header.
Examples:
2018-04-11 17:31:03 +00:00
$ resin api-key generate "Jenkins Key"
2018-04-04 12:42:57 +00:00
2015-04-16 13:34:40 +00:00
# Application
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## app create <name>
2015-04-16 13:34:40 +00:00
Use this command to create a new resin.io application.
2017-05-12 10:01:37 +00:00
You can specify the application device type with the `--type` option.
2015-04-16 13:34:40 +00:00
Otherwise, an interactive dropdown will be shown for you to select from.
You can see a list of supported device types with
$ resin devices supported
Examples:
$ resin app create MyApp
$ resin app create MyApp --type raspberry-pi
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-04-16 13:34:40 +00:00
2017-05-12 10:01:37 +00:00
application device type (Check available types with `resin devices supported` )
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## apps
2015-04-16 13:34:40 +00:00
Use this command to list all your applications.
Notice this command only shows the most important bits of information for each app.
If you want detailed information, use resin app < name > instead.
Examples:
$ resin apps
2018-03-20 17:43:26 +00:00
## app <name>
2015-04-16 13:34:40 +00:00
Use this command to show detailed information for a single application.
Examples:
$ resin app MyApp
2018-03-20 17:43:26 +00:00
## app restart <name>
2015-04-16 13:34:40 +00:00
Use this command to restart all devices that belongs to a certain application.
Examples:
$ resin app restart MyApp
2018-03-20 17:43:26 +00:00
## app rm <name>
2015-04-16 13:34:40 +00:00
Use this command to remove a resin.io application.
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
$ resin app rm MyApp
$ resin app rm MyApp --yes
### Options
#### --yes, -y
confirm non interactively
2015-11-11 12:45:38 +00:00
# Authentication
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## login
2015-04-16 13:34:40 +00:00
2015-11-11 12:45:38 +00:00
Use this command to login to your resin.io account.
2015-06-02 16:32:35 +00:00
2016-01-12 13:07:15 +00:00
This command will prompt you to login using the following login types:
- Web authorization: open your web browser and prompt you to authorize the CLI
2015-12-03 14:22:22 +00:00
from the dashboard.
2016-01-12 13:07:15 +00:00
- Credentials: using email/password and 2FA.
2015-12-03 14:22:22 +00:00
2018-03-23 15:35:39 +00:00
- Token: using a session token or API key (experimental) from the preferences page.
2015-12-12 04:09:31 +00:00
2015-04-16 13:34:40 +00:00
Examples:
2015-11-11 12:45:38 +00:00
$ resin login
2016-01-12 13:07:15 +00:00
$ resin login --web
2015-12-03 14:22:22 +00:00
$ resin login --token "..."
2015-12-12 04:09:31 +00:00
$ resin login --credentials
$ resin login --credentials --email johndoe@gmail.com --password secret
2015-12-03 14:22:22 +00:00
### Options
#### --token, -t <token>
2018-03-23 15:35:39 +00:00
session token or API key (experimental)
2015-04-16 13:34:40 +00:00
2016-01-12 13:07:15 +00:00
#### --web, -w
web-based login
2015-12-12 04:09:31 +00:00
#### --credentials, -c
credential-based login
2017-12-21 17:40:13 +00:00
#### --email, -e, -u <email>
2015-12-12 04:09:31 +00:00
email
#### --password, -p <password>
password
2018-03-20 17:43:26 +00:00
## logout
2015-04-16 13:34:40 +00:00
Use this command to logout from your resin.io account.o
Examples:
$ resin logout
2018-03-20 17:43:26 +00:00
## signup
2015-04-16 13:34:40 +00:00
Use this command to signup for a resin.io account.
If signup is successful, you'll be logged in to your new user automatically.
Examples:
$ resin signup
2017-03-27 09:29:40 +00:00
Email: johndoe@acme.com
2015-04-16 13:34:40 +00:00
Password: ** *********
$ resin whoami
johndoe
2018-03-20 17:43:26 +00:00
## whoami
2015-04-27 14:51:26 +00:00
2015-09-01 17:01:47 +00:00
Use this command to find out the current logged in username and email address.
2015-04-27 14:51:26 +00:00
Examples:
$ resin whoami
2015-04-16 13:34:40 +00:00
# Device
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## devices
2015-04-16 13:34:40 +00:00
2015-04-27 15:20:53 +00:00
Use this command to list all devices that belong to you.
You can filter the devices by application by using the `--application` option.
2015-04-16 13:34:40 +00:00
Examples:
2015-04-27 15:20:53 +00:00
$ resin devices
2015-04-16 13:34:40 +00:00
$ resin devices --application MyApp
2015-04-27 15:20:53 +00:00
$ resin devices --app MyApp
$ resin devices -a MyApp
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2018-03-20 17:43:26 +00:00
## device <uuid>
2015-04-16 13:34:40 +00:00
Use this command to show information about a single device.
Examples:
2016-01-21 14:23:40 +00:00
$ resin device 7cf02a6
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## devices supported
2016-09-25 23:51:32 +00:00
Use this command to get the list of all supported devices
Examples:
$ resin devices supported
2018-03-20 17:43:26 +00:00
## device register <application>
2015-09-29 18:33:31 +00:00
Use this command to register a device to an application.
2017-10-13 18:29:47 +00:00
Note that device api keys are only supported on ResinOS 2.0.3+
2015-09-29 18:33:31 +00:00
Examples:
$ resin device register MyApp
2017-04-19 03:19:04 +00:00
$ resin device register MyApp --uuid < uuid >
$ resin device register MyApp --uuid < uuid > --device-api-key < existingDeviceKey >
2015-09-29 18:33:31 +00:00
2015-10-19 18:16:47 +00:00
### Options
#### --uuid, -u <uuid>
custom uuid
2017-04-19 03:19:04 +00:00
#### --deviceApiKey, -k <device-api-key>
2017-11-16 18:09:20 +00:00
custom device key - note that this is only supported on ResinOS 2.0.3+
2017-04-19 03:19:04 +00:00
2018-03-20 17:43:26 +00:00
## device rm <uuid>
2015-04-16 13:34:40 +00:00
Use this command to remove a device from resin.io.
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
2016-01-21 14:23:40 +00:00
$ resin device rm 7cf02a6
$ resin device rm 7cf02a6 --yes
2015-04-16 13:34:40 +00:00
### Options
#### --yes, -y
confirm non interactively
2018-03-20 17:43:26 +00:00
## device identify <uuid>
2015-04-16 13:34:40 +00:00
Use this command to identify a device.
In the Raspberry Pi, the ACT led is blinked several times.
Examples:
2016-01-21 14:23:40 +00:00
$ resin device identify 23c73a1
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## device reboot <uuid>
2016-03-04 13:38:11 +00:00
Use this command to remotely reboot a device
Examples:
$ resin device reboot 23c73a1
2016-10-26 14:46:20 +00:00
### Options
2017-01-18 15:57:52 +00:00
#### --force, -f
2016-10-26 14:46:20 +00:00
force action if the update lock is set
2018-03-20 17:43:26 +00:00
## device shutdown <uuid>
2016-10-26 14:46:20 +00:00
Use this command to remotely shutdown a device
Examples:
$ resin device shutdown 23c73a1
### Options
2017-01-18 15:57:52 +00:00
#### --force, -f
2016-10-26 14:46:20 +00:00
force action if the update lock is set
2018-03-20 17:43:26 +00:00
## device public-url enable <uuid>
2016-09-25 23:51:32 +00:00
Use this command to enable public URL for a device
Examples:
$ resin device public-url enable 23c73a1
2018-03-20 17:43:26 +00:00
## device public-url disable <uuid>
2016-09-25 23:51:32 +00:00
Use this command to disable public URL for a device
Examples:
$ resin device public-url disable 23c73a1
2018-03-20 17:43:26 +00:00
## device public-url <uuid>
2016-09-25 23:51:32 +00:00
Use this command to get the public URL of a device
Examples:
$ resin device public-url 23c73a1
2018-03-20 17:43:26 +00:00
## device public-url status <uuid>
2016-09-25 23:51:32 +00:00
Use this command to determine if public URL is enabled for a device
Examples:
$ resin device public-url status 23c73a1
2018-03-20 17:43:26 +00:00
## device rename <uuid> [newName]
2015-04-16 13:34:40 +00:00
Use this command to rename a device.
If you omit the name, you'll get asked for it interactively.
Examples:
2016-01-21 14:23:40 +00:00
$ resin device rename 7cf02a6
$ resin device rename 7cf02a6 MyPi
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## device move <uuid>
2015-11-11 19:00:02 +00:00
Use this command to move a device to another application you own.
If you omit the application, you'll get asked for it interactively.
Examples:
2016-01-21 14:23:40 +00:00
$ resin device move 7cf02a6
$ resin device move 7cf02a6 --application MyNewApp
2015-11-11 19:00:02 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-11-11 19:00:02 +00:00
application name
2018-03-20 17:43:26 +00:00
## device init
2015-04-16 13:34:40 +00:00
Use this command to download the OS image of a certain application and write it to an SD Card.
2015-09-29 15:10:33 +00:00
Notice this command may ask for confirmation interactively.
2015-04-16 13:34:40 +00:00
You can avoid this by passing the `--yes` boolean option.
Examples:
$ resin device init
2015-04-20 13:14:47 +00:00
$ resin device init --application MyApp
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2015-09-29 15:10:33 +00:00
#### --yes, -y
2015-04-16 13:34:40 +00:00
2015-09-29 15:10:33 +00:00
confirm non interactively
2015-04-16 13:34:40 +00:00
2015-10-20 13:16:56 +00:00
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2015-10-20 13:16:56 +00:00
2017-06-12 10:21:12 +00:00
#### --os-version <os-version>
exact version number, or a valid semver range,
or 'latest' (includes pre-releases),
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 'menu' (will show the interactive menu)
#### --drive, -d <drive>
2017-06-14 21:23:39 +00:00
the drive to write the image to, like `/dev/sdb` or `/dev/mmcblk0` . Careful with this as you can erase your hard drive. Check `resin util available-drives` for available options.
2017-06-12 10:21:12 +00:00
#### --config <config>
2017-06-14 21:23:39 +00:00
path to the config JSON file, see `resin os build-config`
2017-06-12 10:21:12 +00:00
2015-04-16 13:34:40 +00:00
# Environment Variables
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## envs
2015-04-16 13:34:40 +00:00
2015-07-07 22:01:25 +00:00
Use this command to list all environment variables for
a particular application or device.
2015-04-16 13:34:40 +00:00
2015-07-07 22:01:25 +00:00
This command lists all custom environment variables.
If you want to see all environment variables, including private
2015-04-16 13:34:40 +00:00
ones used by resin, use the verbose option.
2018-05-31 10:43:11 +00:00
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only show service variables,
without showing which service they belong to.
2015-04-16 13:34:40 +00:00
Example:
2015-07-07 22:01:25 +00:00
$ resin envs --application MyApp
$ resin envs --application MyApp --verbose
2016-01-21 14:23:40 +00:00
$ resin envs --device 7cf02a6
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2015-07-07 22:01:25 +00:00
#### --device, -d <device>
2016-02-27 02:38:16 +00:00
device uuid
2015-07-07 22:01:25 +00:00
2015-04-16 13:34:40 +00:00
#### --verbose, -v
show private environment variables
2018-03-20 17:43:26 +00:00
## env rm <id>
2015-04-16 13:34:40 +00:00
Use this command to remove an environment variable from an application.
Don't remove resin specific variables, as things might not work as expected.
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
2015-07-07 22:01:25 +00:00
If you want to eliminate a device environment variable, pass the `--device` boolean option.
2015-04-16 13:34:40 +00:00
Examples:
$ resin env rm 215
$ resin env rm 215 --yes
2015-07-07 22:01:25 +00:00
$ resin env rm 215 --device
2015-04-16 13:34:40 +00:00
### Options
#### --yes, -y
confirm non interactively
2015-07-07 22:01:25 +00:00
#### --device, -d
2016-02-27 02:38:16 +00:00
device
2015-07-07 22:01:25 +00:00
2018-03-20 17:43:26 +00:00
## env add <key> [value]
2015-04-16 13:34:40 +00:00
Use this command to add an enviroment variable to an application.
2018-05-31 10:43:11 +00:00
At the moment the CLI doesn't fully support multi-container applications,
so the following commands will only set service variables for the first
service in your application.
2015-04-16 13:34:40 +00:00
If value is omitted, the tool will attempt to use the variable's value
as defined in your host machine.
2015-07-07 22:01:25 +00:00
Use the `--device` option if you want to assign the environment variable
to a specific device.
2015-04-16 13:34:40 +00:00
If the value is grabbed from the environment, a warning message will be printed.
Use `--quiet` to remove it.
Examples:
2015-07-07 22:01:25 +00:00
$ resin env add EDITOR vim --application MyApp
$ resin env add TERM --application MyApp
2016-01-21 14:23:40 +00:00
$ resin env add EDITOR vim --device 7cf02a6
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2015-04-16 13:34:40 +00:00
application name
2015-07-07 22:01:25 +00:00
#### --device, -d <device>
2016-02-27 02:38:16 +00:00
device uuid
2015-07-07 22:01:25 +00:00
2018-03-20 17:43:26 +00:00
## env rename <id> <value>
2015-04-16 13:34:40 +00:00
Use this command to rename an enviroment variable from an application.
2015-07-07 22:01:25 +00:00
Pass the `--device` boolean option if you want to rename a device environment variable.
2015-04-16 13:34:40 +00:00
Examples:
$ resin env rename 376 emacs
2015-07-07 22:01:25 +00:00
$ resin env rename 376 emacs --device
### Options
#### --device, -d
2016-02-27 02:38:16 +00:00
device
2015-04-16 13:34:40 +00:00
# Help
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## help [command...]
2015-04-16 13:34:40 +00:00
Get detailed help for an specific command.
Examples:
$ resin help apps
$ resin help os download
2015-10-15 12:48:34 +00:00
### Options
#### --verbose, -v
show additional commands
2015-04-16 13:34:40 +00:00
# Information
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## version
2015-04-16 13:34:40 +00:00
Display the Resin CLI version.
# Keys
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## keys
2015-04-16 13:34:40 +00:00
Use this command to list all your SSH keys.
Examples:
$ resin keys
2018-03-20 17:43:26 +00:00
## key <id>
2015-04-16 13:34:40 +00:00
Use this command to show information about a single SSH key.
Examples:
$ resin key 17
2018-03-20 17:43:26 +00:00
## key rm <id>
2015-04-16 13:34:40 +00:00
Use this command to remove a SSH key from resin.io.
Notice this command asks for confirmation interactively.
You can avoid this by passing the `--yes` boolean option.
Examples:
$ resin key rm 17
$ resin key rm 17 --yes
### Options
#### --yes, -y
confirm non interactively
2018-03-20 17:43:26 +00:00
## key add <name> [path]
2015-04-16 13:34:40 +00:00
Use this command to associate a new SSH key with your account.
If `path` is omitted, the command will attempt
to read the SSH key from stdin.
Examples:
$ resin key add Main ~/.ssh/id_rsa.pub
$ cat ~/.ssh/id_rsa.pub | resin key add Main
# Logs
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## logs <uuid>
2015-04-16 13:34:40 +00:00
Use this command to show logs for a specific device.
By default, the command prints all log messages and exit.
To continuously stream output, and see new logs in real time, use the `--tail` option.
Examples:
2016-01-21 14:23:40 +00:00
$ resin logs 23c73a1
$ resin logs 23c73a1
2015-04-16 13:34:40 +00:00
### Options
#### --tail, -t
continuously stream output
2016-03-28 13:25:40 +00:00
# Sync
2018-03-20 17:43:26 +00:00
## sync [uuid]
2016-03-28 13:25:40 +00:00
2017-01-18 15:57:52 +00:00
Warning: 'resin sync' requires an openssh-compatible client and 'rsync' 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
2016-05-19 14:10:45 +00:00
2016-03-28 13:25:40 +00:00
Use this command to sync your local changes to a certain device on the fly.
2016-07-21 16:35:44 +00:00
After every 'resin sync' the updated settings will be saved in
'< source > /.resin-sync.yml' and will be used in later invocations. You can
also change any option by editing '.resin-sync.yml' directly.
2016-04-25 12:32:58 +00:00
2016-07-21 16:35:44 +00:00
Here is an example '.resin-sync.yml' :
2016-03-28 13:25:40 +00:00
2016-07-21 16:35:44 +00:00
$ cat $PWD/.resin-sync.yml
uuid: 7cf02a6
destination: '/usr/src/app'
2016-03-28 13:25:40 +00:00
before: 'echo Hello'
2016-07-21 16:35:44 +00:00
after: 'echo Done'
2016-03-28 13:25:40 +00:00
ignore:
- .git
- node_modules/
2016-07-21 16:35:44 +00:00
Command line options have precedence over the ones saved in '.resin-sync.yml'.
If '.gitignore' is found in the source directory then all explicitly listed files will be
excluded from the syncing process. You can choose to change this default behavior with the
'--skip-gitignore' option.
2016-03-28 13:25:40 +00:00
Examples:
2016-07-21 16:35:44 +00:00
$ resin sync 7cf02a6 --source . --destination /usr/src/app
$ resin sync 7cf02a6 -s /home/user/myResinProject -d /usr/src/app --before 'echo Hello' --after 'echo Done'
$ resin sync --ignore lib/
$ resin sync --verbose false
$ resin sync
2016-03-28 13:25:40 +00:00
### Options
#### --source, -s <path>
2016-07-21 16:35:44 +00:00
local directory path to synchronize to device
#### --destination, -d <path>
destination path on device
2016-03-28 13:25:40 +00:00
#### --ignore, -i <paths>
comma delimited paths to ignore when syncing
2016-07-21 16:35:44 +00:00
#### --skip-gitignore
do not parse excluded/included files from .gitignore
2017-03-22 09:46:06 +00:00
#### --skip-restart
do not restart container after syncing
2016-03-28 13:25:40 +00:00
#### --before, -b <command>
execute a command before syncing
2016-07-21 16:35:44 +00:00
#### --after, -a <command>
2016-03-28 13:25:40 +00:00
2016-07-21 16:35:44 +00:00
execute a command after syncing
2016-03-28 13:25:40 +00:00
#### --port, -t <port>
ssh port
2016-07-21 16:35:44 +00:00
#### --progress, -p
show progress
2016-06-22 20:19:31 +00:00
#### --verbose, -v
increase verbosity
2016-04-24 19:52:41 +00:00
# SSH
2018-03-20 17:43:26 +00:00
## ssh [uuid]
2016-05-19 14:10:45 +00:00
2017-01-18 15:57:52 +00:00
Warning: 'resin ssh' requires an openssh-compatible client 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
2016-04-24 19:52:41 +00:00
Use this command to get a shell into the running application container of
your device.
Examples:
2016-07-21 16:35:44 +00:00
$ resin ssh MyApp
2016-05-19 14:10:45 +00:00
$ resin ssh 7cf02a6
$ resin ssh 7cf02a6 --port 8080
2016-06-22 13:46:18 +00:00
$ resin ssh 7cf02a6 -v
2017-12-18 16:00:07 +00:00
$ resin ssh 7cf02a6 -s
2016-04-24 19:52:41 +00:00
### Options
2016-07-21 16:35:44 +00:00
#### --port, -p <port>
2016-04-24 19:52:41 +00:00
2016-05-19 14:10:45 +00:00
ssh gateway port
2016-04-24 19:52:41 +00:00
2016-06-22 13:46:18 +00:00
#### --verbose, -v
increase verbosity
2017-12-18 13:31:07 +00:00
#### --host, -s
2017-12-18 10:36:58 +00:00
2017-12-18 11:51:27 +00:00
access host OS (for devices with Resin OS >= 2.7.5)
2017-12-18 10:36:58 +00:00
2017-05-18 22:44:30 +00:00
#### --noproxy
2017-05-18 22:25:01 +00:00
don't use the proxy configuration for this connection. Only makes sense if you've configured proxy globally.
2015-04-16 13:34:40 +00:00
# Notes
2015-04-16 14:42:09 +00:00
2018-03-20 17:43:26 +00:00
## note <|note>
2015-04-16 13:34:40 +00:00
Use this command to set or update a device note.
If note command isn't passed, the tool attempts to read from `stdin` .
2015-08-04 14:00:09 +00:00
To view the notes, use $ resin device < uuid > .
2015-04-16 13:34:40 +00:00
Examples:
2016-01-21 14:23:40 +00:00
$ resin note "My useful note" --device 7cf02a6
$ cat note.txt | resin note --device 7cf02a6
2015-04-16 13:34:40 +00:00
### Options
2017-12-21 17:40:13 +00:00
#### --device, -d, --dev <device>
2015-04-16 13:34:40 +00:00
2015-08-04 14:00:09 +00:00
device uuid
2015-04-16 13:34:40 +00:00
2015-09-29 17:03:14 +00:00
# OS
2018-03-20 17:43:26 +00:00
## os versions <type>
2017-06-12 10:21:12 +00:00
Use this command to show the available resinOS versions for a certain device type.
Check available types with `resin devices supported`
Example:
$ resin os versions raspberrypi3
2018-03-20 17:43:26 +00:00
## os download <type>
2015-09-29 17:03:14 +00:00
Use this command to download an unconfigured os image for a certain device type.
2017-05-12 10:01:37 +00:00
Check available types with `resin devices supported`
2015-09-29 17:03:14 +00:00
2017-03-22 10:50:06 +00:00
If version is not specified the newest stable (non-pre-release) version of OS
is downloaded if available, or the newest version otherwise (if all existing
versions for the given device type are pre-release).
You can pass `--version menu` to pick the OS version from the interactive menu
of all available versions.
2015-09-29 17:03:14 +00:00
Examples:
2017-03-22 10:50:06 +00:00
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version 1.24.1
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version ^1.20.0
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version latest
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version default
$ resin os download raspberrypi3 -o ../foo/bar/raspberry-pi.img --version menu
2015-09-29 17:03:14 +00:00
### Options
#### --output, -o <output>
output path
2017-03-22 10:50:06 +00:00
#### --version <version>
exact version number, or a valid semver range,
or 'latest' (includes pre-releases),
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 'menu' (will show the interactive menu)
2018-03-20 17:43:26 +00:00
## os build-config <image> <device-type>
2017-06-12 10:21:12 +00:00
Use this command to prebuild the OS config once and skip the interactive part of `resin os configure` .
2017-11-16 18:11:17 +00:00
Example:
2017-06-12 10:21:12 +00:00
$ resin os build-config ../path/rpi3.img raspberrypi3 --output rpi3-config.json
$ resin os configure ../path/rpi3.img 7cf02a6 --config "$(cat rpi3-config.json)"
### Options
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2017-06-12 10:21:12 +00:00
#### --output, -o <output>
the path to the output JSON file
2018-03-20 17:43:26 +00:00
## os configure <image> [uuid] [deviceApiKey]
2015-09-29 17:36:29 +00:00
2017-11-16 18:13:20 +00:00
Use this command to configure a previously downloaded operating system image for
the specific device or for an application generally.
2015-09-29 17:36:29 +00:00
2018-07-11 18:56:13 +00:00
Calling this command without --version is not recommended, and may fail in
future releases if the OS version cannot be inferred.
2017-11-16 18:13:20 +00:00
Note that device api keys are only supported on ResinOS 2.0.3+.
2018-07-11 18:56:13 +00:00
This command still supports the *deprecated* format where the UUID and optionally device key
2017-11-16 18:13:20 +00:00
are passed directly on the command line, but the recommended way is to pass either an --app or
--device argument. The deprecated format will be remove in a future release.
2017-10-13 18:29:47 +00:00
2015-09-29 17:36:29 +00:00
Examples:
2018-07-11 18:56:13 +00:00
$ resin os configure ../path/rpi.img --device 7cf02a6 --version 2.12.7
$ resin os configure ../path/rpi.img --device 7cf02a6 --version 2.12.7 --device-api-key < existingDeviceKey >
$ resin os configure ../path/rpi.img --app MyApp --version 2.12.7
2015-09-29 17:36:29 +00:00
2015-10-19 17:38:09 +00:00
### Options
#### --advanced, -v
2017-06-14 21:51:56 +00:00
show advanced configuration options
2015-10-19 17:38:09 +00:00
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2017-11-16 18:13:20 +00:00
application name
#### --device, -d <device>
device uuid
#### --deviceApiKey, -k <device-api-key>
custom device key - note that this is only supported on ResinOS 2.0.3+
2018-07-11 18:56:13 +00:00
#### --version <version>
2018-07-12 10:13:41 +00:00
a resinOS version
2018-07-11 18:56:13 +00:00
2017-06-12 10:21:12 +00:00
#### --config <config>
2017-06-14 21:23:39 +00:00
path to the config JSON file, see `resin os build-config`
2017-06-12 10:21:12 +00:00
2018-03-20 17:43:26 +00:00
## os initialize <image>
2015-09-29 18:52:34 +00:00
2017-03-24 09:48:14 +00:00
Use this command to initialize a device with previously configured operating system image.
Note: Initializing the device may ask for administrative permissions
because we need to access the raw devices directly.
2015-09-29 18:52:34 +00:00
Examples:
2015-10-15 12:48:34 +00:00
$ resin os initialize ../path/rpi.img --type 'raspberry-pi'
### Options
#### --yes, -y
confirm non interactively
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-10-15 12:48:34 +00:00
2017-05-12 10:01:37 +00:00
device type (Check available types with `resin devices supported` )
2015-09-29 18:52:34 +00:00
2015-10-20 13:17:48 +00:00
#### --drive, -d <drive>
2017-06-14 21:51:56 +00:00
the drive to write the image to, like `/dev/sdb` or `/dev/mmcblk0` . Careful with this as you can erase your hard drive. Check `resin util available-drives` for available options.
2015-10-20 13:17:48 +00:00
2015-11-10 16:53:34 +00:00
# Config
2018-03-20 17:43:26 +00:00
## config read
2015-11-10 16:53:34 +00:00
2016-06-22 13:46:18 +00:00
Use this command to read the config.json file from the mounted filesystem (e.g. SD card) of a provisioned device"
2015-11-10 16:53:34 +00:00
2015-11-10 18:27:01 +00:00
Examples:
2015-11-10 16:53:34 +00:00
$ resin config read --type raspberry-pi
$ resin config read --type raspberry-pi --drive /dev/disk2
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-11-10 16:53:34 +00:00
2017-05-12 10:01:37 +00:00
device type (Check available types with `resin devices supported` )
2015-11-10 16:53:34 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config write <key> <value>
2015-11-10 18:27:01 +00:00
2016-06-22 13:46:18 +00:00
Use this command to write the config.json file to the mounted filesystem (e.g. SD card) of a provisioned device
2015-11-10 18:27:01 +00:00
Examples:
$ resin config write --type raspberry-pi username johndoe
$ resin config write --type raspberry-pi --drive /dev/disk2 username johndoe
$ resin config write --type raspberry-pi files.network/settings "..."
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-11-10 18:27:01 +00:00
2017-05-12 10:01:37 +00:00
device type (Check available types with `resin devices supported` )
2015-11-10 18:27:01 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config inject <file>
2016-03-17 20:07:19 +00:00
2018-01-26 14:43:00 +00:00
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"
2016-03-17 20:07:19 +00:00
Examples:
$ resin config inject my/config.json --type raspberry-pi
$ resin config inject my/config.json --type raspberry-pi --drive /dev/disk2
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2016-03-17 20:07:19 +00:00
2017-05-12 10:01:37 +00:00
device type (Check available types with `resin devices supported` )
2016-03-17 20:07:19 +00:00
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## config reconfigure
2015-11-11 14:38:45 +00:00
Use this command to reconfigure a provisioned device
Examples:
$ resin config reconfigure --type raspberry-pi
$ resin config reconfigure --type raspberry-pi --advanced
$ resin config reconfigure --type raspberry-pi --drive /dev/disk2
### Options
2017-05-12 10:01:37 +00:00
#### --type, -t <type>
2015-11-11 14:38:45 +00:00
2017-05-12 10:01:37 +00:00
device type (Check available types with `resin devices supported` )
2015-11-11 14:38:45 +00:00
#### --drive, -d <drive>
drive
#### --advanced, -v
show advanced commands
2018-03-20 17:43:26 +00:00
## config generate
2016-02-27 02:37:15 +00:00
2017-11-14 13:14:53 +00:00
Use this command to generate a config.json for a device or application.
2018-07-11 18:56:13 +00:00
Calling this command without --version is not recommended, and may fail in
future releases if the OS version cannot be inferred.
2017-11-14 13:14:53 +00:00
This is interactive by default, but you can do this automatically without interactivity
by specifying an option for each question on the command line, if you know the questions
that will be asked for the relevant device type.
2016-02-27 02:37:15 +00:00
Examples:
2018-07-11 18:56:13 +00:00
$ resin config generate --device 7cf02a6 --version 2.12.7
$ resin config generate --device 7cf02a6 --version 2.12.7 --generate-device-api-key
$ resin config generate --device 7cf02a6 --version 2.12.7 --device-api-key < existingDeviceKey >
$ resin config generate --device 7cf02a6 --version 2.12.7 --output config.json
$ resin config generate --app MyApp --version 2.12.7
$ resin config generate --app MyApp --version 2.12.7 --output config.json
$ resin config generate --app MyApp --version 2.12.7 --network wifi --wifiSsid mySsid --wifiKey abcdefgh --appUpdatePollInterval 1
2016-02-27 02:37:15 +00:00
### Options
2018-07-11 18:56:13 +00:00
#### --version <version>
2018-07-12 10:13:41 +00:00
a resinOS version
2018-07-11 18:56:13 +00:00
2017-12-21 17:40:13 +00:00
#### --application, -a, --app <application>
2016-03-28 13:25:40 +00:00
application name
#### --device, -d <device>
device uuid
2017-04-19 03:21:59 +00:00
#### --deviceApiKey, -k <device-api-key>
2017-10-11 17:52:03 +00:00
custom device key - note that this is only supported on ResinOS 2.0.3+
2017-04-19 03:21:59 +00:00
2018-07-10 17:45:48 +00:00
#### --generate-device-api-key
generate a fresh device key for the device
2016-02-27 02:37:15 +00:00
#### --output, -o <output>
output
2017-11-14 13:14:53 +00:00
#### --network <network>
the network type to use: ethernet or wifi
#### --wifiSsid <wifiSsid>
the wifi ssid to use (used only if --network is set to wifi)
#### --wifiKey <wifiKey>
the wifi key to use (used only if --network is set to wifi)
#### --appUpdatePollInterval <appUpdatePollInterval>
how frequently (in minutes) to poll for application updates
2017-10-25 11:17:07 +00:00
# Preload
2018-03-20 17:43:26 +00:00
## preload <image>
2017-10-25 11:17:07 +00:00
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
2018-01-30 17:31:49 +00:00
Edison zip archive) with a built release from Resin.io.
2017-10-25 11:17:07 +00:00
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>
2018-01-30 17:31:49 +00:00
the commit hash for a specific application release to preload, use "latest" to specify the latest release
2017-10-25 11:17:07 +00:00
(ignored if no appId is given)
#### --splash-image, -s <splashImage.png>
path to a png image to replace the splash screen
#### --dont-check-device-type
Disables check for matching device types in image and application
2018-05-30 13:33:05 +00:00
#### --pin-device-to-release, -p
Pin the preloaded device to the preloaded release on provision
2017-10-25 11:17:07 +00:00
#### --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
2018-06-26 16:59:44 +00:00
# Push
## push <application>
This command can be used to start a build on the remote
resin.io cloud builders. The given source directory will be sent to the
resin.io builder, and the build will proceed. This can be used as a drop-in
replacement for git push to deploy.
Examples:
$ resin push myApp
$ resin push myApp --source < source directory >
$ resin push myApp -s < source directory >
### Options
#### --source, -s <source>
The source that should be sent to the resin builder to be built (defaults to the current directory)
2015-11-16 02:08:02 +00:00
# Settings
2018-03-20 17:43:26 +00:00
## settings
2015-11-16 02:08:02 +00:00
Use this command to display detected settings
Examples:
$ resin settings
2015-09-01 17:01:47 +00:00
# Wizard
2015-04-16 13:34:40 +00:00
2018-03-20 17:43:26 +00:00
## quickstart [name]
2015-04-16 14:42:09 +00:00
2015-09-01 17:01:47 +00:00
Use this command to run a friendly wizard to get started with resin.io.
2015-04-16 13:34:40 +00:00
2015-09-01 17:01:47 +00:00
The wizard will guide you through:
2015-04-16 13:34:40 +00:00
2015-09-01 17:01:47 +00:00
- Create an application.
- Initialise an SDCard with the resin.io operating system.
- Associate an existing project directory with your resin.io application.
- Push your project to your devices.
2015-04-16 13:34:40 +00:00
Examples:
2016-01-11 20:01:40 +00:00
$ resin quickstart
$ resin quickstart MyApp
2015-04-16 13:34:40 +00:00
2017-04-11 13:25:54 +00:00
# Local
2018-03-20 17:43:26 +00:00
## local configure <target>
2017-04-11 13:25:54 +00:00
Use this command to configure or reconfigure a resinOS drive or image.
Examples:
$ resin local configure /dev/sdc
$ resin local configure path/to/image.img
2018-03-20 17:43:26 +00:00
## local flash <image>
2017-04-11 13:25:54 +00:00
Use this command to flash a resinOS image to a drive.
Examples:
$ resin local flash path/to/resinos.img
$ resin local flash path/to/resinos.img --drive /dev/disk2
$ resin local flash path/to/resinos.img --drive /dev/disk2 --yes
### Options
#### --yes, -y
confirm non-interactively
#### --drive, -d <drive>
drive
2018-03-20 17:43:26 +00:00
## local logs [deviceIp]
2017-04-11 13:25:54 +00:00
Examples:
$ resin local logs
$ resin local logs -f
$ resin local logs 192.168.1.10
$ resin local logs 192.168.1.10 -f
$ resin local logs 192.168.1.10 -f --app-name myapp
### Options
#### --follow, -f
follow log
#### --app-name, -a <name>
name of container to get logs from
2018-03-20 17:43:26 +00:00
## local scan
2017-04-11 13:25:54 +00:00
Examples:
$ resin local scan
$ resin local scan --timeout 120
$ resin local scan --verbose
### Options
#### --verbose, -v
Display full info
#### --timeout, -t <timeout>
Scan timeout in seconds
2018-03-20 17:43:26 +00:00
## local ssh [deviceIp]
2017-04-11 13:25:54 +00:00
Warning: 'resin local ssh' requires an openssh-compatible client 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 get a shell into the running application container of
your device.
The '--host' option will get you a shell into the Host OS of the resinOS device.
No option will return a list of containers to enter or you can explicitly select
one by passing its name to the --container option
Examples:
$ resin local ssh
$ resin local ssh --host
$ resin local ssh --container chaotic_water
$ resin local ssh --container chaotic_water --port 22222
$ resin local ssh --verbose
### Options
#### --verbose, -v
increase verbosity
#### --host, -s
get a shell into the host OS
#### --container, -c <container>
name of container to access
#### --port, -p <port>
ssh port number (default: 22222)
2018-03-20 17:43:26 +00:00
## local push [deviceIp]
2017-04-11 13:25:54 +00:00
Warning: 'resin local push' requires an openssh-compatible client and 'rsync' 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 push your local changes to a container on a LAN-accessible resinOS device on the fly.
If `Dockerfile` or any file in the 'build-triggers' list is changed,
a new container will be built and run on your device.
If not, changes will simply be synced with `rsync` into the application container.
After every 'resin local push' the updated settings will be saved in
'< source > /.resin-sync.yml' and will be used in later invocations. You can
also change any option by editing '.resin-sync.yml' directly.
Here is an example '.resin-sync.yml' :
$ cat $PWD/.resin-sync.yml
destination: '/usr/src/app'
before: 'echo Hello'
after: 'echo Done'
ignore:
- .git
- node_modules/
Command line options have precedence over the ones saved in '.resin-sync.yml'.
If '.gitignore' is found in the source directory then all explicitly listed files will be
excluded when using rsync to update the container. You can choose to change this default behavior with the
'--skip-gitignore' option.
Examples:
$ resin local push
$ resin local push --app-name test-server --build-triggers package.json,requirements.txt
$ resin local push --force-build
$ resin local push --force-build --skip-logs
$ resin local push --ignore lib/
$ resin local push --verbose false
$ resin local push 192.168.2.10 --source . --destination /usr/src/app
$ resin local push 192.168.2.10 -s /home/user/myResinProject -d /usr/src/app --before 'echo Hello' --after 'echo Done'
### Options
#### --source, -s <path>
root of project directory to push
#### --destination, -d <path>
destination path on device container
#### --ignore, -i <paths>
comma delimited paths to ignore when syncing with 'rsync'
#### --skip-gitignore
do not parse excluded/included files from .gitignore
#### --before, -b <command>
execute a command before pushing
#### --after, -a <command>
execute a command after pushing
#### --progress, -p
show progress
#### --skip-logs
do not stream logs after push
#### --verbose, -v
increase verbosity
#### --app-name, -n <name>
application name - may contain lowercase characters, digits and one or more dashes. It may not start or end with a dash.
#### --build-triggers, -r <files>
comma delimited file list that will trigger a container rebuild if changed
#### --force-build, -f
force a container build and run
#### --env, -e <env>
environment variable (e.g. --env 'ENV=value'). Multiple --env parameters are supported.
2018-03-20 17:43:26 +00:00
## local stop [deviceIp]
2017-04-11 13:25:54 +00:00
Examples:
$ resin local stop
$ resin local stop --app-name myapp
$ resin local stop --all
$ resin local stop 192.168.1.10
$ resin local stop 192.168.1.10 --app-name myapp
### Options
#### --all
stop all containers
#### --app-name, -a <name>
name of container to stop
2017-04-26 12:34:40 +00:00
# Deploy
2018-03-20 17:43:26 +00:00
## build [source]
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Use this command to build an image or a complete multicontainer project
with the provided docker daemon.
2017-04-26 12:34:40 +00:00
You must provide either an application or a device-type/architecture
pair to use the resin Dockerfile pre-processor
(e.g. Dockerfile.template -> Dockerfile).
2017-12-11 22:37:56 +00:00
This command will look into the given source directory (or the current working
directory if one isn't specified) for a compose file. If one is found, this
command will build each service defined in the compose file. If a compose file
isn't found, the command will look for a Dockerfile, and if yet that isn't found,
it will try to generate one.
2017-04-26 12:34:40 +00:00
Examples:
$ resin build
$ resin build ./source/
$ resin build --deviceType raspberrypi3 --arch armhf
$ resin build --application MyApp ./source/
$ resin build --docker '/var/run/docker.sock'
$ resin build --dockerHost my.docker.host --dockerPort 2376 --ca ca.pem --key key.pem --cert cert.pem
### Options
#### --arch, -A <arch>
The architecture to build for
2017-05-29 12:59:25 +00:00
#### --deviceType, -d <deviceType>
2017-04-26 12:34:40 +00:00
The type of device this build is for
#### --application, -a <application>
The target resin.io application this build is for
2017-12-11 22:37:56 +00:00
#### --projectName, -n <projectName>
Specify an alternate project name; default is the directory name
#### --emulated, -e
Run an emulated build using Qemu
#### --logs
Display full log output
2017-04-26 12:34:40 +00:00
#### --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
#### --tag, -t <tag>
The alias to the generated image
2017-05-12 10:01:37 +00:00
#### --buildArg, -B <arg>
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
2017-04-26 12:34:40 +00:00
#### --nocache
Don't use docker layer caching when building
2017-06-23 15:20:16 +00:00
#### --squash
Squash newly built layers into a single new layer
2018-03-20 17:43:26 +00:00
## deploy <appName> [image]
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Use this command to deploy an image or a complete multicontainer project
to an application, optionally building it first.
2017-04-26 12:34:40 +00:00
2017-10-09 17:10:50 +00:00
Usage: `deploy <appName> ([image] | --build [--source build-dir])`
2017-12-11 22:37:56 +00:00
Unless an image is specified, this command will look into the current directory
(or the one specified by --source) for a compose file. If one is found, this
command will deploy each service defined in the compose file, building it first
if an image for it doesn't exist. If a compose file isn't found, the command
will look for a Dockerfile, and if yet that isn't found, it will try to
generate one.
2017-10-09 17:10:50 +00:00
To deploy to an app on which you're a collaborator, use
`resin deploy <appOwnerUsername>/<appName>` .
2017-04-26 12:34:40 +00:00
Note: If building with this command, all options supported by `resin build`
are also supported with this command.
Examples:
2017-12-11 22:37:56 +00:00
$ resin deploy myApp
2017-04-26 12:34:40 +00:00
$ resin deploy myApp --build --source myBuildDir/
$ resin deploy myApp myApp/myImage
### Options
2017-12-11 22:37:56 +00:00
#### --source, -s <source>
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Specify an alternate source directory; default is the working directory
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
#### --build, -b
2017-04-26 12:34:40 +00:00
2017-12-11 22:37:56 +00:00
Force a rebuild before deploy
2017-04-26 12:34:40 +00:00
2017-05-12 10:01:37 +00:00
#### --nologupload
Don't upload build logs to the dashboard with image (if building)
2017-12-11 22:37:56 +00:00
#### --projectName, -n <projectName>
Specify an alternate project name; default is the directory name
#### --emulated, -e
Run an emulated build using Qemu
#### --logs
Display full log output
2017-04-26 12:34:40 +00:00
#### --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
#### --tag, -t <tag>
The alias to the generated image
2017-05-12 10:01:37 +00:00
#### --buildArg, -B <arg>
Set a build-time variable (eg. "-B 'ARG=value'"). Can be specified multiple times.
2017-04-26 12:34:40 +00:00
#### --nocache
Don't use docker layer caching when building
2017-05-12 10:01:37 +00:00
2017-06-23 15:20:16 +00:00
#### --squash
Squash newly built layers into a single new layer
2017-06-14 21:23:39 +00:00
# Utilities
2018-03-20 17:43:26 +00:00
## util available-drives
2017-06-14 21:23:39 +00:00
Use this command to list your machine's drives usable for writing the OS image to.
Skips the system drives.