Docker image for bull-board. Allow you to monitor your bull queue without any coding!
Supports both bull and bullmq.
docker run -p 3000:3000 venatum/bull-board:latest
will run bull-board interface on localhost:3000 and connect to your redis instance on localhost:6379 without password.
To configure redis see "Environment variables" section.
services:
bullboard:
container_name: bullboard
image: venatum/bull-board
restart: unless-stopped
ports:
- "3000:3000"will run bull-board interface on localhost:3000 and connect to your redis instance on localhost:6379 without password.
see "Example with docker-compose" section, for example, with env parameters
Redis
REDIS_HOST- host to connect to redis (localhostby default)REDIS_PORT- redis port (6379by default)REDIS_DB- redis db to use ('0'by default)REDIS_USE_TLS- enable TLS true or false (falseby default)REDIS_PASSWORD- password to connect to redis (no password by default)
Interface
PROXY_PATH- proxyPath for bull board, e.g. https://<server_name>/my-base-path/queues [docs] (''by default)USER_LOGIN- login to restrict access to bull-board interface (disabled by default)USER_PASSWORD- password to restrict access to bull-board interface (disabled by default)
Queue setup
BULL_PREFIX- prefix to your bull queue name (bullby default)BULL_VERSION- version of bull lib to use 'BULLMQ' or 'BULL' (BULLMQby default)BACKOFF_STARTING_DELAY- The delay, in milliseconds, before starts the research for the first time (500by default)BACKOFF_MAX_DELAY- The maximum delay, in milliseconds, between two consecutive attempts (Infinityby default)BACKOFF_TIME_MULTIPLE- TheBACKOFF_STARTING_DELAYis multiplied by theBACKOFF_TIME_MULTIPLEto increase the delay between reattempts (2by default)BACKOFF_NB_ATTEMPTS- The maximum number of times to attempt the research (10by default)
To restrict access to bull-board use USER_LOGIN and USER_PASSWORD env vars.
Only when both USER_LOGIN and USER_PASSWORD specified, access will be restricted with login/password
services:
redis:
container_name: redis
image: redis:alpine
restart: unless-stopped
ports:
- "6379:6379"
volumes:
- redis_db_data:/data
bullboard:
container_name: bullboard
image: venatum/bull-board:latest
restart: unless-stopped
environment:
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_PASSWORD: example-password
REDIS_USE_TLS: 'false'
BULL_PREFIX: bull
ports:
- "3000:3000"
depends_on:
- redis
volumes:
redis_db_data:
external: false