Skip to main content

Install Pomerium Enterprise Console

Pomerium Enterprise Console is available as RPM and DEB OS packages and as a Docker image.

  • Supported Operating Systems: linux, darwin
  • Supported Architectures: amd64, arm64

Install with OS packages

You can find the latest rpm and deb packages on Cloudsmith or download them from the GitHub releases page.

To automatically configure the repository for Debian and Ubuntu distributions:

  1. Replace [access-key] in the command below and run it:
curl -1sLf \
'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/setup.deb.sh' \
| sudo -E bash

To manually configure the repository, import the apt-key and create a new .list file in /etc/apt/source.list.d:

curl -1sLf 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/gpg.B1D0324399CB9BC3.key' | apt-key add -

echo "deb https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/deb/debian buster main" | sudo tee /apt/sources.list.d/pomerium-console.list
  1. Update apt and install Pomerium Enterprise:
sudo apt update; sudo apt install pomerium-console

After you've installed the package, enable and start the system service:

sudo systemctl enable --now pomerium-console

Install with Docker

The Pomerium Enterprise Docker image is available at a private Cloudsmith Docker registry.

To access the Pomerium Enterprise Docker image:

  1. In your terminal, run the following command:
docker login docker.cloudsmith.io
  1. Enter your username and password:
 % docker login docker.cloudsmith.io
Username: <username>
Password: <password>
  1. Pull the Pomerium Enterprise image:

Pull a specific tagged release:

docker pull docker.cloudsmith.io/pomerium/enterprise/pomerium-console:${vX.X.X}

Pull the most recent tagged release:

docker pull docker.cloudsmith.io/pomerium/enterprise/pomerium-console:latest

Pull an image in sync with git's main branch:

docker pull docker.cloudsmith.io/pomerium/enterprise/pomerium-console:main

See the Enterprise Quickstart for instructions to run and deploy the Enterprise Console with Docker Compose.