Unofficial Docker images with the balena CLI and Docker-in-Docker.
These environment variables are available for additional functionality included in the CLI image. In most cases these are optional, but some examples will highlight when environment variables are required.
-e "SSH_PRIVATE_KEY=$(</path/to/priv/key)": copy your private SSH key file contents as an environment variable-e "DOCKERD=1": enable the included Docker-in-Docker daemon (requires --privileged)-e "DOCKERD_EXTRA_ARGS=--key=val": provide additional args for the Docker-in-Docker daemonVolumes can be used to persist data between instances of the CLI container, or to share files between the host and the container. In most cases these are optional, but some examples will highlight when volumes are required.
-v "balena_data:/root/.balena": persist balena credentials and downloads between instances-v "docker_data:/var/lib/docker": persist cache between instances when using Docker-in-Docker (requires -e "DOCKERD=1")-v "$PWD:$PWD" -w "$PWD": bind mount your current working directory in the container to share app sources or balenaOS image files-v "${SSH_AUTH_SOCK}:/ssh-agent": bind mount your host ssh-agent socket with preloaded SSH keys-v "/var/run/docker.sock:/var/run/docker.sock": bind mount your host Docker socket instead of Docker-in-DockerHere are some examples of common CLI commands and how they are best used with this image, since some special considerations must be made.
The balena login command can't be used with web authorization and a browser
when running in a container. Instead it must be used with --token or --credentials.
Notice that here we've used a named volume balena_data to store credentials
for future runs of the CLI image. This is optional but avoids having to run the login
command again every time you run the image.
$ docker volume create balena_data
$ docker run --rm -it -v "balena_data:/root/.balena" klutchell/balena-cli /bin/bash
> balena login --credentials --email "[email protected]" --password "secret"
> balena login --token "..."
> exit
In this example we are mounting your current working directory into the container with -v "$PWD:$PWD" -w "$PWD".
This will bind mount your current working directory into the container at the same absolute path.
This bind mount is required so the CLI has access to your app sources.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "$PWD:$PWD" -w "$PWD" \
klutchell/balena-cli /bin/bash
> balena push myApp --source .
> balena push 10.0.0.1 --env MY_ENV_VAR=value --env my-service:SERVICE_VAR=value
> exit
$ docker run --rm -it -v "balena_data:/root/.balena" \
klutchell/balena-cli /bin/bash
> balena logs 23c73a1 --service my-service
> balena logs 23c73a1.local --system --tail
> exit
The balena ssh command requires an existing SSH key added to your balenaCloud
account.
One way to make this key available to the container is to pass the private key file contents as an environment variable.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-e "SSH_PRIVATE_KEY=$(</path/to/priv/key)" \
klutchell/balena-cli /bin/bash
> balena ssh f49cefd
> balena ssh f49cefd my-service
> balena ssh 192.168.0.1 --verbose
> exit
Another way to share SSH keys with the container is to mount your SSH agent socket with keys preloaded.
$ eval ssh-agent
$ ssh-add /path/to/priv/key
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "${SSH_AUTH_SOCK}:/ssh-agent" \
klutchell/balena-cli /bin/bash
> balena ssh f49cefd
> balena ssh f49cefd my-service
> balena ssh 192.168.0.1 --verbose
> exit
$ docker run --rm -it -v "balena_data:/root/.balena" \
klutchell/balena-cli /bin/bash
> balena apps
> balena app myorg/myapp
> exit
$ docker run --rm -it -v "balena_data:/root/.balena" \
klutchell/balena-cli /bin/bash
> balena devices --application MyApp
> balena device 7cf02a6
> exit
The balena tunnel command is easiest used when the host networking stack
can be shared with the container and ports can be easily assigned.
However the host networking driver only works on Linux hosts, and is not supported on Docker Desktop for Mac, Docker Desktop for Windows, or Docker EE for Windows Server.
Instead you can bind specific port ranges to the host so you can access the tunnel
from outside the container via localhost:[localPort].
Note that when exposing individual ports, you must specify all interfaces in the format
[remotePort]:0.0.0.0:[localPort] otherwise the tunnel will only be listening for
connections within the container.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-p 22222:22222 \
-p 12345:54321
klutchell/balena-cli /bin/bash
> balena tunnel 2ead211 -p 22222:0.0.0.0
> balena tunnel myApp -p 54321:0.0.0.0:12345
> exit
If you have host networking available then you do not need to specify ports
in your run command, and the interface 0.0.0.0 is optional in your tunnel command.
$ docker run --rm -it -v "balena_data:/root/.balena" \
--network host \
klutchell/balena-cli /bin/bash
> balena tunnel 2ead211 -p 22222
> balena tunnel myApp -p 54321:12345
> exit
The balena preload command requires access to a Docker client and daemon.
The easiest way to run this command is to use the included Docker-in-Docker daemon.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "docker_data:/var/lib/docker" \
-e "DOCKERD=1" --privileged \
klutchell/balena-cli /bin/bash
> balena os download raspberrypi3 -o raspberry-pi.img
> balena os configure raspberry-pi.img --app MyApp
> balena preload raspberry-pi.img --app MyApp --commit current
> exit
Another way to run the preload command is to use the host OS Docker socket and avoid
starting a Docker daemon in the container. This is achieved with -v "/var/run/docker.sock:/var/run/docker.sock".
In this example we are mounting your current working directory into the container with -v "$PWD:$PWD" -w "$PWD".
This will bind mount your current working directory into the container at the same absolute path.
This bind mount is required when using the host Docker socket because the absolute path to the balenaOS image file must be the same from both the perspective of the CLI in the container and the host Docker socket.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "/var/run/docker.sock:/var/run/docker.sock" \
-v "$PWD:$PWD" -w "$PWD" \
klutchell/balena-cli /bin/bash
> balena os download raspberrypi3 -o raspberry-pi.img
> balena os configure raspberry-pi.img --app MyApp
> balena preload raspberry-pi.img --app MyApp --commit current
> exit
The build and deploy commands both require access to a Docker client and daemon.
The easiest way to run these commands is to use the included Docker-in-Docker daemon.
In this example we are mounting your current working directory into the container with -v "$PWD:$PWD" -w "$PWD".
This will bind mount your current working directory into the container at the same absolute path.
This bind mount is required so the CLI has access to your app sources.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "docker_data:/var/lib/docker" \
-e DOCKERD=1 --privileged \
-v "$PWD:$PWD" -w "$PWD" \
klutchell/balena-cli /bin/bash
> balena build --application myApp
> balena deploy myApp
> exit
Another way to run the build and deploy commands is to use the host OS Docker socket and avoid
starting a Docker daemon in the container. This is achieved with -v "/var/run/docker.sock:/var/run/docker.sock".
In this example we are mounting your current working directory into the container with -v "$PWD:$PWD" -w "$PWD".
This will bind mount your current working directory into the container at the same absolute path.
This bind mount is required so the CLI has access to your app sources.
$ docker run --rm -it -v "balena_data:/root/.balena" \
-v "/var/run/docker.sock:/var/run/docker.sock" \
-v "$PWD:$PWD" -w "$PWD" \
klutchell/balena-cli /bin/bash
> balena build --application myApp
> balena deploy myApp
> exit
$ docker run --rm -it -v "balena_data:/root/.balena" \
klutchell/balena-cli /bin/bash
> balena join balena.local --application MyApp
> balena leave balena.local
> exit
The balena scan command requires access to the host network interface
in order to bind and listen for multicast responses from devices.
However the host networking driver only works on Linux hosts, and is not supported on Docker Desktop for Mac, Docker Desktop for Windows, or Docker EE for Windows Server.
docker run --rm -it --network host klutchell/balena-cli scan
Content type
Image
Digest
Size
202.9 MB
Last updated
over 4 years ago
docker pull klutchell/balena-cli