For the complete documentation index, see llms.txt. This page is also available as Markdown.

Keeper Gateway 1.6.0

Released on July 7th, 2025

Keeper Gateway 1.6.0 provides significant performance improvements in connections and sessions in Docker installations.

Improvements

  • Performance Enhancements: Major performance improvements for session handling, delivering a smoother, faster experience across RDP, SSH, and Remote Browser Isolation protocols.

Important: Docker Installation Updates

After upgrading to Keeper Gateway 1.6.0, and deploying via Docker, you must update your Dockerfile-compose.yaml and docker-seccomp.json file:

1. Docker Compose Changes

The following needs to be adding to the security_opt section of docker-compose.yaml:

apparmor=unconfined

The keeper-gateway service section in your docker-compose.yaml now looks like the following:

keeper-gateway:
    platform: linux/amd64
    image: keeper/gateway:latest
    shm_size: 2g
    security_opt:
      - seccomp:./docker-seccomp.json
      - apparmor=unconfined

2. Update docker-seccomp.json

The docker-seccomp.json file needs to be replaced. Please use the below file:

Alternatively, you can use the following curl command:


Gateway Documentation

For instructions on installing or updating your Keeper Gateway, visit this page:


Troubleshooting / Known Issues

Connection errors in CA/JP/AU regions

  • We are aware of certain environments causing connection errors in the CA/JP/AU regions. We have identified the issue and we will be publishing an update with version 1.6.1. If you are experiencing an issue, revert to the gateway 1.5.6 image.

Windows Install Errors

  • When upgrading Windows servers, if you receive any errors during install, please perform a reboot prior to installing the new version. This ensures that all running processes are stopped.

Ubuntu Linux with RBI (Remote Browser Isolation)

  • Docker running on Ubuntu Linux has a known issue with RBI. We are planning a 1.6.1 release to address this. A temporary fix is running the below command on the Ubuntu host in addition to the above Docker changes

Performance Upgrades

  • Only the Docker version of the Keeper Gateway 1.6 contains major speed improvements. The Windows gateway and Linux binary version will be updated in the next release.

Reverting

  • If you need to revert your Keeper Gateway version, update your docker-compose.yml file to use the keeper/gateway:1.5.6 image instead of keeper/gateway:latest.

Creating new gateways

  • The web vault and desktop app provide the previous docker-seccomp.json and docker-compose.yml files when creating a new gateway. We are pushing a new vault version 17.3 which provides the updated versions. In the meantime, please follow the latest documentation on installing the Docker version.

Last updated