redislabs/redismod 1:M 24 Apr 2019 21:46:40.474 * <ft> concurrency: ON, gc: ON, prefix min length: 2, prefix max expansions: 200, query timeout (ms): 500, timeout policy: return, cursor read size: 1000, cursor max idle (ms): 300000, max doctable size: ***, search pool size: 20, index pool size: 8, 1:M 24 Apr 2019 21:46:40.475 * <ft> Initialized thread pool! 1:M 24 Apr 2019 21:46:40.475 * Module 'ft' loaded from /usr/lib/redis/modules/redisearch.so 1:M 24 Apr 2019 21:46:40.476 * <graph> Thread pool created, using 8 threads. 1:M 24 Apr 2019 21:46:40.476 * Module 'graph' loaded from /usr/lib/redis/modules/redisgraph.so loaded default MAX_SAMPLE_PER_CHUNK policy: 360 1:M 24 Apr 2019 21:46:40.476 * Module 'timeseries' loaded from /usr/lib/redis/modules/redistimeseries.so 1:M 24 Apr 2019 21:46:40.476 # <ReJSON> JSON data type for Redis v1.0.4 [encver 0] 1:M 24 Apr 2019 21:46:40.476 * Module 'ReJSON' loaded from /usr/lib/redis/modules/rejson.so 1:M 24 Apr 2019 21:46:40.476 * Module 'bf' loaded from /usr/lib/redis/modules/rebloom.so 1:M 24 Apr 2019 21:46:40.477 * <rg> RedisGears version 0.2.1, git_sha=fb97ad757eb7238259de47035bdd582735b5c81b 1:M 24 Apr 2019 21:46:40.477 * <rg> PythonHomeDir:/usr/lib/redis/modules/deps/cpython/ 1:M 24 Apr 2019 21:46:40.477 * <rg> MaxExecutions:1000 1:M 24 Apr 2019 21:46:40.477 * <rg> RedisAI api loaded successfully. 1:M 24 Apr 2019 21:46:40.477 # <rg> RediSearch api loaded successfully. 1:M 24 Apr 2019 21:46:40.521 * Module 'rg' loaded from /usr/lib/redis/modules/redisgears.so 1:M 24 Apr 2019 21:46:40.521 * Ready to accept connections
This image is based on the official image of Redis from Docker. By default, the container starts with Redis' default configuration and all included modules loaded.
You can, of course, override the defaults. This can be done either by providing additional command line arguments to the docker command, or by providing your own Redis configuration file.
You can provide Redis with configuration directives directly from the docker command. For example, the following will start the container, mount the host's /home/user/data volume to the container's /data, load the Rebloom module, and configure Redis' working directory to /data so that the data will actually be persisted there.
text$ docker run \ -p 6379:6379 \ -v /home/user/data:/data \ redislabs/redismod \ --loadmodule /usr/lib/redis/modules/rebloom.so \ --dir /data
Assuming that you have put together a configration file such as the following, and have stored it at /home/user/redis.conf:
textrequirepass foobared dir /data loadmodule /usr/lib/redis/modules/rebloom.so
And then execute something along these lines:
text$ docker run \ -p 6379:6379 \ -v /home/user/data:/data \ -v /home/user/redis.conf:/usr/local/etc/redis/redis.conf \ redislabs/redismod \ /usr/local/etc/redis/redis.conf
Your dockerized Redis server will start and will be listening at the default Redis port (6379) of the host. In addition, the Redis server will require password authentication ("foobared"), will store the data to the container's /data (that is the host's volume /home/user/data), and will have loaded only the Rebloom module.
This Docker image is licensed under the 3-Clause BSD License.
Redis is distributed under the 3-Clause BSD License. The Redis trademark and logos are owned by Redis Labs Ltd, please read the Redis trademark guidelines ([***] for our policy about the use of the Redis trademarks and logo.
The copyright of the Redis modules in this container belongs to Redis Labs, and the modules are distributed under the Redis Source Available License.
探索更多轩辕镜像的使用方法,找到最适合您系统的配置方式
通过 Docker 登录认证访问私有仓库
在 Linux 系统配置镜像服务
在 Docker Desktop 配置镜像
Docker Compose 项目配置
Kubernetes 集群配置 Containerd
K3s 轻量级 Kubernetes 镜像加速
VS Code Dev Containers 配置
MacOS OrbStack 容器配置
在宝塔面板一键配置镜像
Synology 群晖 NAS 配置
飞牛 fnOS 系统配置镜像
极空间 NAS 系统配置服务
爱快 iKuai 路由系统配置
绿联 NAS 系统配置镜像
QNAP 威联通 NAS 配置
Podman 容器引擎配置
HPC 科学计算容器配置
ghcr、Quay、nvcr 等镜像仓库
无需登录使用专属域名
需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单
免费版仅支持 Docker Hub 访问,不承诺可用性和速度;专业版支持更多镜像源,保证可用性和稳定速度,提供优先客服响应。
专业版支持 docker.io、gcr.io、ghcr.io、registry.k8s.io、nvcr.io、quay.io、mcr.microsoft.com、docker.elastic.co 等;免费版仅支持 docker.io。
当返回 402 Payment Required 错误时,表示流量已耗尽,需要充值流量包以恢复服务。
通常由 Docker 版本过低导致,需要升级到 20.x 或更高版本以支持 V2 协议。
先检查 Docker 版本,版本过低则升级;版本正常则验证镜像信息是否正确。
使用 docker tag 命令为镜像打上新标签,去掉域名前缀,使镜像名称更简洁。
来自真实用户的反馈,见证轩辕镜像的优质服务