Title logo
strausmann/bloonix_agent.

A Docker Image to Build the Bloonix Minitoring Agent

10,454 1 unknown amd64 arm64 unknown

Build Information

General build information for this image

Docker Hub strausmann/bloonix_agent
Build Time 08 Nov 2025 00:18:47
Base Image strausmann/bloonix_base
Category Bloonix Monitoring
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest latest 11 Oct 2025 at 05:59:56

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  bloonix_agent:
    image: strausmann/bloonix_agent:latest
    container_name: bloonix_agent
    restart: no
    environment:
      - BLOONIX_AGENT_SERVER_SSL_VERIFY_MODE=none
      - BLOONIX_AGENT_SERVER_HOST=example_bloonix_server # The host to connect to the bloonix server.
      - BLOONIX_AGENT_HOST1_PASSWORD=[Insert the HOST PASSWORD here] # This is the password for the given host id. You can find the password in the Bloonix WebGUI. The agent must be authorized to send data for the given host id.
      - BLOONIX_AGENT_HOST1_ID=[Insert the HOST ID here] # This is the host id for which the agent executes the checks and collects the statistic data. You can find the host id in the Bloonix WebGUI.
    volumes:
      - /host/path/to/etc/timezone:/etc/timezone:ro 
      - /host/path/to/etc/localtime:/etc/localtime:ro 

CLI

docker create \
  --name=bloonix_agent \
  -e BLOONIX_AGENT_SERVER_SSL_VERIFY_MODE=none \
  -e BLOONIX_AGENT_SERVER_HOST=example_bloonix_server `# The host to connect to the bloonix server.` \
  -e BLOONIX_AGENT_HOST1_PASSWORD=[Insert the HOST PASSWORD here] `# This is the password for the given host id. You can find the password in the Bloonix WebGUI. The agent must be authorized to send data for the given host id.` \
  -e BLOONIX_AGENT_HOST1_ID=[Insert the HOST ID here] `# This is the host id for which the agent executes the checks and collects the statistic data. You can find the host id in the Bloonix WebGUI.` \
  -v /host/path/to/etc/timezone:/etc/timezone:ro \
  -v /host/path/to/etc/localtime:/etc/localtime:ro \
  --restart no \
  strausmann/bloonix_agent:latest