Sign inSign up

axisecp/docker-compose-acap

By axisecp

Updated about 3 years ago

ACAP application to add dockerd and docker-compose to a container capable Axis device

Image
0

2.7K

axisecp/docker-compose-acap repository overview

The Docker Compose ACAP

This ACAP contains both the Docker Engine and the binaries necessary to interact with it. Installing this ACAP will make it possible to run Docker containers and Docker commands directly on the Axis device.

Compatibility

Device

The Docker Compose ACAP requires a container capable device. You may check the compatibility of your device by running:

DEVICE_IP=<device ip>
DEVICE_PASSWORD='<password>'

curl -s --anyauth -u "root:$DEVICE_PASSWORD" \
  "http://$DEVICE_IP/axis-cgi/param.cgi?action=update&root.Network.SSH.Enabled=yes"

ssh root@$DEVICE_IP 'command -v containerd >/dev/null 2>&1 && echo Compatible with Docker ACAP || echo Not compatible with Docker ACAP'

where <device ip> is the IP address of the Axis device and <password> is the root password. Please note that you need to enclose your password with quotes (') if it contains special characters.

Host

The host machine is recommended to have Docker and Docker Compose installed. To build Docker Compose ACAP locally it is required to have Docker Engine and Buildx installed.

Installing

The Docker Compose application is available as a signed eap-file in Releases, this is the recommended way to install this ACAP.

The prebuilt Docker Compose ACAP application is signed, read more about signing here.

Download and install any signed eap-file from prereleases or releases with a tag on the form <version>_<ARCH>, where <version> is the docker-compose-acap release version and <ARCH> is either armv7hf or aarch64 depending on device architecture. E.g. Docker_Daemon_with_Compose_1_3_0_aarch64_signed.eap. The eap-file can be installed as an ACAP application on the device, where it can be controlled in the device GUI Apps tab.

# Get download url for a signed ACAP with curl
# Where <ARCH> is the architecture
curl -s https://api.github.com/repos/AxisCommunications/docker-compose-acap/releases/latest | grep "browser_download_url.*Docker_Daemon_with_Compose_.*_<ARCH>\_signed.eap"
Installation of version 1.2.5 and previous

To install this ACAP with version 1.2.5 or previous use the pre-built docker hub image:

docker run --rm axisecp/docker-compose-acap:latest-<ARCH> <device ip> <rootpasswd> install

Where <ARCH> is either armv7hf or aarch64 depending on device architecture.

It's also possible to build and use a locally built image. See the Building the Docker Compose ACAP section for more information.

Securing the Docker Compose ACAP using TLS

The Docker Compose ACAP can be run either unsecured or in TLS mode. The Docker Compose ACAP uses TLS as default. Use the "Use TLS" dropdown in the web interface to switch between the two different modes. It's also possible to toggle this option by calling the parameter management API in VAPIX and setting the root.dockerdwrapperwithcompose.UseTLS parameter to yes or no. The following commands would enable TLS:

DEVICE_IP=<device ip>
DEVICE_PASSWORD='<password>'

curl -s --anyauth -u "root:$DEVICE_PASSWORD" \
  "http://$DEVICE_IP/axis-cgi/param.cgi?action=update&root.dockerdwrapperwithcompose.UseTLS=yes"

Note that the dockerd service will be restarted every time TLS is activated or deactivated. Running the ACAP using TLS requires some additional setup, see next chapter. Running the ACAP without TLS requires no further setup.

TLS Setup

TLS requires a few keys and certificates to work, which are listed in the subsections below. For more information on how to generate these files, please consult the official Docker documentation. Most of these keys and certificates need to be moved to the Axis device. There are multiple ways to achieve this, for example by using scp to copy the files from a remote machine onto the device. This can be done by running the following command on the remote machine:

scp ca.pem server-cert.pem server-key.pem root@<device ip>:/usr/local/packages/dockerdwrapperwithcompose/
The Certificate Authority (CA) certificate

This certificate needs to be present in the dockerdwrapperwithcompose package folder on the Axis device and be named ca.pem. The full path of the file should be /usr/local/packages/dockerdwrapperwithcompose/ca.pem.

The server certificate

This certificate needs to be present in the dockerdwrapperwithcompose package folder on the Axis device and be named server-cert.pem. The full path of the file should be /usr/local/packages/dockerdwrapperwithcompose/server-cert.pem.

The private server key

This key needs to be present in the dockerdwrapperwithcompose package folder on the Axis device and be named server-key.pem. The full path of the file should be /usr/local/packages/dockerdwrapperwithcompose/server-key.pem.

Client key and certificate

A client will need to have its own private key, together with a certificate authorized by the CA. Key, certificate and CA shall be used when running Docker against the dockerd daemon on the Axis device. See below for an example:

DOCKER_PORT=2376
docker --tlsverify \
       --tlscacert=ca.pem \
       --tlscert=client-cert.pem \
       --tlskey=client-key.pem \
       -H=<device ip>:$DOCKER_PORT \
       version

Specifying the files on each Docker command will soon become tedious. To configure Docker to automatically use your key and certificate, please export the DOCKER_CERT_PATH environment variable:

export DOCKER_CERT_PATH=<client certificate directory>
DOCKER_PORT=2376
docker --tlsverify \
       -H=<device ip>:$DOCKER_PORT \
       version

where <client certificate directory> is the directory on your computer where the files ca.pem, cert.pem and key.pem are stored.

Using an SD card as storage

An SD card might be necessary to run the Docker Compose ACAP correctly. Docker containers and docker images can be quite large, and putting them on an SD card gives more freedom in how many and how large images can be stored. Switching between storage on the SD card or internal storage is done by toggling the "SD card support" dropdown in the web interface. It's also possible to toggle this option by calling the parameter management API in VAPIX (accessing this documentation requires creating a free account) and setting the root.dockerdwrapperwithcompose.SDCardSupport parameter to yes or no.

Toggling this setting will automatically restart the docker daemon using the specified storage. The default setting is to use the internal storage on the device.

Note that dockerdwrapperwithcompose requires that Unix permissions are supported by the file system. Examples of file systems which support this are ext4, ext3 and xfs. It might be necessary to reformat the SD card to one of these file systems, for example if the original file system of the SD card is vfat.

Make sure to use an SD card that has enough capacity to hold your applications. Other properties of the SD card, like the speed, might also affect the performance of your applications. For example, the Computer Vision SDK example object-detector-python has a significantly higher inference time when using a small and slow SD card. To get more informed about specifications, check the SD Card Standards.

Using the Docker Compose ACAP

The Docker Compose ACAP contains the Docker Daemon, the docker client binary and the docker compose plugin. This means that all Docker management can be done running a terminal on the Axis device.

Using the Docker Compose ACAP on the Axis device

The first step is to open a terminal on the Axis device. This can be done using SSH:

ssh root@<device ip>

The docker client binary will be reachable in the terminal without any additional setup:

docker version

The docker compose functionality is also available:

docker compose version

Note that the ACAP is shipped with Compose V2.

Using the Docker Compose ACAP remotely

It's also possible to call the Docker Compose ACAP from a separate machine. This can be achieved by using the -H flag when running the docker command on the remote machine.

The port used will change depending on if the Docker Compose ACAP runs using TLS or not. The Docker Compose ACAP will be reachable on port 2375 when running unsecured, and on port 2376 when running secured using TLS. Please read section Securing the Docker Compose ACAP using TLS for more information. Below is an example of how to remotely run a docker command on an Axis device running the Docker Compose ACAP in unsecured mode:

DOCKER_INSECURE_PORT=2375
docker -H=<device ip>:$DOCKER_INSECURE_PORT version

See Client key and certificate for an example of how to remotely run docker commands on a device running a secured Docker Compose ACAP using TLS.

Building the Docker Compose ACAP

Docker Compose ACAP is built in two steps using two Dockerfiles. Too simplify the process a handy shell script is provided. Note that Buildx is used and therefore required to be installed.

# Build Docker ACAP image
./build.sh <ARCH> docker-acap-with-compose:<ARCH>

where <ARCH> is either armv7hf or aarch64. The script will produce a Docker image, docker-acap-with-compose:<ARCH>, and also a folder build-<ARCH> containing artifacts from the build, among them the Docker Compose ACAP as an .eap file.

Installing a locally built Docker Compose ACAP

Installation can be done in two ways. Either by using the locally built docker image:

docker run --rm docker-acap-with-compose:1.0 <device ip> <rootpasswd> install

Or by manually installing the .eap file from the build-<ARCH> folder by using the Web GUI in the device:

http://<device ip>/#settings/apps

Go to your device web page above > Click on the tab App in the device GUI > Add (+) sign and browse to the newly built .eap-file > Click Install > Run the application by enabling the Start switch.

Tag summary

Content type

Image

Digest

sha256:43403e5dc

Size

500.9 MB

Last updated

about 3 years ago

docker pull axisecp/docker-compose-acap:1.3.1-aarch64