ContainerSSH packages

ContainerSSH maintains an experimental package repository at packages.containerssh.io. This page describes how to add the repository to your operating system.

Warning

The package repository is experimental and is likely to change in the future.

First, you need to add the tools needed for adding a custom repository:

sudo apt-get update
sudo apt-get install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg-agent \
    software-properties-common

Next, you should add our GnuPG key as a trusted key for packages:

curl -fsSL https://packages.containerssh.io/debian/gpg | sudo apt-key add -

Verify that you now have the correct fingerprint:

sudo apt-key fingerprint F358FABA

Add our repository:

sudo add-apt-repository \
   "deb [arch=amd64] https://packages.containerssh.io/debian ./"

Finally, refresh the package list:

sudo apt-get update

Now you can install the ContainerSSH packages.