
如果你使用 DeepSeek、元宝 AI、Copilot、ChatGPT 等 AI 工具,协助配置轩辕镜像、编写 docker pull 命令、修改 Docker Compose 镜像地址、配置镜像加速、排查镜像拉取失败、分析报错日志等问题,请先让 AI 阅读并遵守轩辕镜像的规则文档。
只需在 AI 对话中先发送下面这句话即可:
请先完整阅读并严格遵守以下文档中的全部规则与要求:
https://xuanyuan.cloud/agents.md
在未充分阅读并理解该文档前,不要生成任何命令、配置、修改建议、故障排查方案或技术回答。后续所有输出都必须严格以该文档中的规范为最高优先级执行。查看 agents.md 用法指南与完整示范。国内用户首推 元宝 AI、DeepSeek 的深度思考模式,不推荐豆包 AI;Cursor 等编辑器可在对话 @ 该链接,或加入 User Rules。 若 AI 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。
InfluxDB 3 Explorer is a standalone web application designed for visualizing, querying, and managing your data stored in InfluxDB 3. Explorer provides an intuitive interface for interacting with your time series data.
To use InfluxDB 3 Explorer, you need a compatible InfluxDB 3 instance, such as InfluxDB 3 Core or InfluxDB 3 Enterprise. See the official https://hub.docker.com/_/influxdb.
bashdocker pull influxdata/influxdb3-ui:1.9.0
Run InfluxDB 3 Explorer using Docker CLI.
To start Explorer in query mode for read-only access:
bashdocker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ influxdata/influxdb3-ui:1.9.0
To start Explorer in admin mode with full functionality:
bashdocker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ influxdata/influxdb3-ui:1.9.0 \ --mode=admin
This command:
8080 to host port 8080 (web UI)If --mode is not set, the container defaults to query mode.
Access the Explorer UI at http://localhost:8080 in your browser.
To preserve Explorer application data across container restarts, mount a local directory:
IMPORTANT: The container runs as non-root user influxui (uid 1500). The mounted directory must be owned by this user.
bashmkdir -p ./db sudo chown -R 1500:1500 ./db chmod 700 ./db
bashdocker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ --volume $(pwd)/db:/db:rw \ influxdata/influxdb3-ui:1.9.0 \ --mode=admin
Troubleshooting: If you see SQLITE_CANTOPEN errors, fix the directory ownership:
bashsudo chown -R 1500:1500 ./db docker restart influxdb3-explorer
To pre-configure InfluxDB connection settings, create a config.json file and mount it:
bashmkdir -p ./config ./db sudo chown -R 1500:1500 ./db chmod 755 ./config chmod 700 ./db # Create config file cat > ./config/config.json << 'EOF' { "DEFAULT_INFLUX_SERVER": "http://host.docker.internal:8181", "DEFAULT_INFLUX_DATABASE": "my_database", "DEFAULT_API_TOKEN": "your-admin-token", "DEFAULT_SERVER_NAME": "my_server" } EOF
bashdocker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ --volume $(pwd)/config:/app-root/config:ro \ --volume $(pwd)/db:/db:rw \ influxdata/influxdb3-ui:1.9.0 \ --mode=admin
To enable TLS/SSL, mount valid certificate and key files into the container:
Place your TLS/SSL certificate files in your local ./ssl directory: Required files:
Certificate: cert.pem or server.crt Private key: key.pem or server.key
bash# Create directories mkdir -p ./ssl ./db sudo chown -R 1500:1500 ./db chmod 755 ./ssl # Place your cert.pem and key.pem files in ./ssl directory docker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ --publish 8443:8443 \ --volume $(pwd)/ssl:/etc/nginx/ssl:ro \ --volume $(pwd)/db:/db:rw \ --env SSL_CERT_PATH=/etc/nginx/ssl/cert.pem \ --env SSL_KEY_PATH=/etc/nginx/ssl/key.pem \ influxdata/influxdb3-ui:1.9.0 \ --mode=admin
Access the UI via HTTPS at https://localhost:8443
The nginx web server automatically uses certificate files when they are present in the mounted path.
You can use custom locations for certificate and key files:
bashmkdir -p ./ssl ./db sudo chown -R 1500:1500 ./db chmod 755 ./ssl docker run --detach \ --name influxdb3-explorer \ --publish 8080:8080 \ --publish 8443:8443 \ --volume $(pwd)/ssl:/custom/ssl:ro \ --volume $(pwd)/db:/db:rw \ --env SSL_CERT_PATH=/custom/ssl/server.crt \ --env SSL_KEY_PATH=/custom/ssl/server.key \ influxdata/influxdb3-ui:1.9.0 \ --mode=admin
The following environment variables can be used to configure the container:
DATABASE_URL - Path to SQLite database inside container (default: /db/sqlite.db)SESSION_SECRET_KEY - Secret key for session management (recommended for production)SSL_CERT_PATH - Path to SSL certificate file (default: /etc/nginx/ssl/cert.pem)SSL_KEY_PATH - Path to SSL private key file (default: /etc/nginx/ssl/key.pem)Important for production: Always set SESSION_SECRET_KEY in production. When you restart the container, InfluxDB 3 Explorer generates a new key if not explicitly set.
For more information about available options and environment variables, see the https://docs.influxdata.com/influxdb3/explorer/install/
您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。
来自真实用户的反馈,见证轩辕镜像的优质服务
以下是 influxdata/influxdb3-ui 相关的常用 Docker 镜像,适用于 不同场景 等不同场景: