Title logo
strausmann/bloonix_server.

3,495 1 unknown arm64 unknown amd64

Build Information

General build information for this image

Docker Hub strausmann/bloonix_server
Build Time 26 Sep 2025 20:15:00
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 26 Sep 2025 at 20:14:59

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  bloonix_server:
    image: strausmann/bloonix_server:latest
    container_name: bloonix_server
    restart: no
    environment:
      - BLOONIX_PLUGINS_CONFIGURATION_FORCE_IPV4=true # Forces plugin configuration to use IPv4. This parameter should be set to true if Docker does not support IPv6 connections and thus hangs Bloonix server container on startup.
      - BLOONIX_ELASTICSEARCH_PORT=9200 # Elasticsearch server port. By default, the Elasticsearch REST port is used.
      - BLOONIX_ELASTICSEARCH_HOST=elasticsearch # Hostname or servicename of the Elasticsearch server.
      - BLOONIX_DATABASE_USER=bloonix # Database username
      - BLOONIX_DATABASE_SCHEMA=bloonix # Used database schema
      - BLOONIX_DATABASE_PORT=5432 # Database server port. By default, the PostgreSQL port is used.
      - BLOONIX_DATABASE_PASSWORD=changePostgresPassword # IMPORTANT: Plaintext details of passwords are unsecure. Better use BLOONIX_DATABASE_PASSWORD_FILE with Docker secret.
      - BLOONIX_DATABASE_HOST=postgres # Hostname or servicename of the database server.
    volumes:
      - /host/path/to/etc/bloonix:/etc/bloonix # Bloonix Configuration
    ports:
      - 5460:5460/tcp # Bloonix Server
      - 443:443/tcp # Bloonix Web GUI

CLI

docker create \
  --name=bloonix_server \
  -e BLOONIX_PLUGINS_CONFIGURATION_FORCE_IPV4=true `# Forces plugin configuration to use IPv4. This parameter should be set to true if Docker does not support IPv6 connections and thus hangs Bloonix server container on startup.` \
  -e BLOONIX_ELASTICSEARCH_PORT=9200 `# Elasticsearch server port. By default, the Elasticsearch REST port is used.` \
  -e BLOONIX_ELASTICSEARCH_HOST=elasticsearch `# Hostname or servicename of the Elasticsearch server.` \
  -e BLOONIX_DATABASE_USER=bloonix `# Database username` \
  -e BLOONIX_DATABASE_SCHEMA=bloonix `# Used database schema` \
  -e BLOONIX_DATABASE_PORT=5432 `# Database server port. By default, the PostgreSQL port is used.` \
  -e BLOONIX_DATABASE_PASSWORD=changePostgresPassword `# IMPORTANT: Plaintext details of passwords are unsecure. Better use BLOONIX_DATABASE_PASSWORD_FILE with Docker secret.` \
  -e BLOONIX_DATABASE_HOST=postgres `# Hostname or servicename of the database server.` \
  -v /host/path/to/etc/bloonix:/etc/bloonix `# Bloonix Configuration` \
  -p 5460:5460/tcp `# Bloonix Server` \
  -p 443:443/tcp `# Bloonix Web GUI` \
  --restart no \
  strausmann/bloonix_server:latest