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.
- deb
- yum
To automatically configure the repository for Debian and Ubuntu distributions:
- 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
- Update
apt
and install Pomerium Enterprise:
sudo apt update; sudo apt install pomerium-console
To automatically configure the repository for RHEL based distributions:
- Replace [access-key] in the command below and run it:
curl -1sLf \
'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/setup.rpm.sh' \
| sudo -E bash
To manually configure the repository, run:
yum install yum-utils pygpgme
rpm --import 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/gpg.B1D0324399CB9BC3.key'
curl -1sLf 'https://dl.cloudsmith.io/[access-key]/pomerium/enterprise/config.rpm.txt?distro=el&codename=8' > /tmp/pomerium-enterprise.repo
yum-config-manager --add-repo '/tmp/pomerium-enterprise.repo'
yum -q makecache -y --disablerepo='*' --enablerepo='pomerium-enterprise'
- Update
yum
and install Pomerium Enterprise:
yum -y 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:
- In your terminal, run the following command:
docker login docker.cloudsmith.io
- Enter your username and password:
% docker login docker.cloudsmith.io
Username: <username>
Password: <password>
- 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.