@bull-board/cli 9.5.0 → 9.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -64,6 +64,16 @@ module.exports = {
64
64
  };
65
65
  ```
66
66
 
67
+ ## Docker
68
+
69
+ ```sh
70
+ docker run --rm -p 127.0.0.1:3000:3000 \
71
+ -e BULL_BOARD_USER=admin -e BULL_BOARD_PASSWORD=secret \
72
+ ghcr.io/felixmosh/bull-board --redis redis://host.docker.internal:6379
73
+ ```
74
+
75
+ `ghcr.io/felixmosh/bull-board` is this package as an image, built for amd64 and arm64 on every release and tagged with the exact version, the major, and `latest`. The entrypoint is the CLI, so flags and `BULL_BOARD_*` variables work exactly as they do above. The only things the image decides for you are `BULL_BOARD_HOST=0.0.0.0` and `BULL_BOARD_OPEN=false`, the two defaults that make no sense in a container, and you can override both. [Run with Docker](https://felixmosh.github.io/bull-board/guide/docker) covers Compose, tags and mounting a config file.
76
+
67
77
  Discovery only reads Redis, so BullMQ v6 queues backed by PostgreSQL aren't found here; use a server adapter in your own app for those. `--prefix` doesn't take wildcards either, list the prefixes you need explicitly.
68
78
 
69
- See the [CLI guide](https://felixmosh.github.io/bull-board/guide/cli) for the full flag and environment variable reference, a Docker Compose example, and the basic auth walkthrough.
79
+ See the [CLI guide](https://felixmosh.github.io/bull-board/guide/cli) for the full flag and environment variable reference and the basic auth walkthrough.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bull-board/cli",
3
- "version": "9.5.0",
3
+ "version": "9.6.0",
4
4
  "description": "Run the bull-board dashboard against a Redis instance from the command line.",
5
5
  "keywords": [
6
6
  "bull",
@@ -38,8 +38,8 @@
38
38
  "test": "jest"
39
39
  },
40
40
  "dependencies": {
41
- "@bull-board/api": "9.5.0",
42
- "@bull-board/express": "9.5.0",
41
+ "@bull-board/api": "9.6.0",
42
+ "@bull-board/express": "9.6.0",
43
43
  "bull": "^4.16.5",
44
44
  "bullmq": "^5.81.3",
45
45
  "express": "^5.2.1",