valkey-bundle
Valkey-Bundle Overview
Secure your stack with a hardened Valkey-Bundle image freshly-built by Minimus. Minimus images always include the most up-to-date package version for all packages and dependencies contained in the image.
Valkey-Bundle packages the Valkey key-value datastore together with its most popular modules — Valkey JSON, Valkey Bloom, Valkey Search, and Valkey LDAP — in a single image. This adds JSON document storage, space-efficient probabilistic data structures, vector and full-text search, and LDAP authentication on top of standard Valkey functionality, without requiring you to build or load the modules yourself.
Try It Out
Run the container:
docker run -d --rm \
--name valkey-bundle \
-p 6379:6379 \
reg.mini.dev/valkey-bundle:latestTest the connection:
docker exec -it valkey-bundle valkey-cli -h 127.0.0.1 -p 6379 pingYou should receive a response PONG confirming the connection is working.
List Bundled Modules
Verify that all the modules loaded correctly:
docker exec -it valkey-bundle valkey-cli MODULE LISTYou should see json, bf (Bloom), search, and ldap listed among the loaded modules.
Valkey JSON Module
Valkey JSON adds native JSON document storage, so you can store, update, and query structured documents directly in Valkey using JSONPath instead of serializing objects into plain strings and parsing them back on every read.
Store and query a JSON document with Valkey JSON:
docker exec -it valkey-bundle valkey-cli JSON.SET user $ '{"name":"Ada","roles":["admin","dev"]}'
docker exec -it valkey-bundle valkey-cli JSON.GET user $.rolesValkey Bloom Module
Valkey Bloom adds probabilistic data structures — Bloom filters, Cuckoo filters, Count-Min Sketch, and Top-K — that test set membership or frequency using a fraction of the memory a full set or hash would need, which is useful for skipping duplicate work or avoiding unnecessary lookups against a slower backing store.
Create a Bloom filter with Valkey Bloom:
docker exec -it valkey-bundle valkey-cli BF.RESERVE filter 0.01 1000
docker exec -it valkey-bundle valkey-cli BF.ADD filter item1
docker exec -it valkey-bundle valkey-cli BF.EXISTS filter item1Valkey Search Module
Valkey Search adds full-text search and secondary indexing, including numeric filtering, geo-spatial queries, and aggregations, directly on top of stored documents, so you can query by content instead of only by key without standing up a separate search engine.
Index the name field, add a document, then search for a match:
docker exec -it valkey-bundle valkey-cli FT.CREATE idx ON JSON PREFIX 1 user: SCHEMA $.name AS name TEXT
docker exec -it valkey-bundle valkey-cli JSON.SET user:1 $ '{"name":"Ada Lovelace"}'
docker exec -it valkey-bundle valkey-cli FT.SEARCH idx "Ada"Valkey LDAP Module
Valkey LDAP lets Valkey authenticate users against an external LDAP identity provider instead of managing passwords with requirepass or ACLs directly, which is useful when access should follow your organization's existing directory.
List the module's configuration options:
docker exec -it valkey-bundle valkey-cli CONFIG GET *ldap*Technical Considerations
The Valkey-Bundle image provided by Minimus is a slim, security-hardened alternative to the public image from Docker Hub. The images are largely interchangeable, with a few differences as noted below.
Valkey-Bundle built by Minimus:
- Runs as root to support required functions in alignment with the public image.
- Drill down on the version specification tab to see the default user, listening ports, entrypoint, volumes, environment variables, etc.
The Payoff
A hardened, minimal image that will remain more secure for the long run and accrue vulnerabilities at a slower rate.
- See the risk reduction dashboard for a detailed CVE comparison over the past 30 days.
- Review the compliance report to see the default hardening and security configurations for the image.
Terms & Info
Trademark
This catalog is published by Minimus. All product names, logos, and marks, other than those belonging to Minimus, shown are owned by their respective rights holders and appear here only to identify the open source software each image contains. Minimus claims no ownership of those marks and implies no affiliation with, endorsement by, certification by, or sponsorship by any rights holder.
Disclaimer
Images are provided "as-is" without warranty of any kind. "Hardened" refers to the security configuration applied at the time of build and does not constitute a guarantee of ongoing security or absence of vulnerabilities. The free tier is provided without support, SLA, or guaranteed patching timelines. Security updates may be applied to paid subscriptions before or instead of free tier images. By pulling or using any image you agree to our Terms of Use.