Skip to main content
bLIS Gateway is distributed as a single compiled binary with no external dependencies. You can run it directly on a Linux VM or as a Docker container.

VM deployment

Install with the install script

The recommended way to install bLIS Gateway on a VM is with the install script. Run the following command with sudo:
This script:
  1. Detects your platform (Linux x64 or ARM64)
  2. Downloads the latest stable binary
  3. Installs it to /usr/local/bin/blis-gateway
  4. Creates directories for configuration, logs, and data
  5. Generates a default configuration file at /etc/blis-gateway/gateway.yaml
  6. Sets up a systemd service (enabled but not started)
After installation, edit the configuration file and start the service:
You can install from a specific release channel by passing --channel=dev or --channel=beta. The default is stable.

Install manually

If you prefer to install manually, download the binary for your platform and place it on your PATH:

Set up as a systemd service

bLIS Gateway can generate its own systemd service file:
Then enable and start the service:
Useful service commands:

Update the gateway

To update to the latest version, use the built-in upgrade command:
To check for updates without installing:

Docker deployment

bLIS Gateway publishes multi-architecture container images (Linux x64 and ARM64) to the GitHub Container Registry.

Run with Docker

Adjust the published ports to match the instrument ports in your configuration file, plus the web dashboard port if enabled.

Run with Docker Compose

Create a docker-compose.yml file:
Start the container:
Publish a port for each instrument defined in your configuration, plus port 8080 (or your chosen port) if you enable the web dashboard.

Volumes

Validate your configuration

After installation, verify your configuration file is valid before starting the gateway:
This checks for syntax errors, missing required fields, and configuration conflicts (such as duplicate instrument ports).

Next steps

Configuration

Learn about all available configuration options.

What is bLIS Gateway?

Return to the gateway overview.