轩辕镜像 官方专业版
轩辕镜像
专业版
轩辕镜像 官方专业版
轩辕镜像
专业版
首页个人中心搜索镜像
交易
充值流量¥7起我的订单
文档
工具
提交工单页面收录
groov-cert-signer

opto22/groov-cert-signer

opto22

SPA for signing groov EPIC and groov RIO web server certificates

下载次数: 0状态:社区镜像维护者:opto22仓库类型:镜像最近更新:2 个月前
让 AI 帮你使用轩辕镜像? · 展开查看说明 · 点击收起说明

如果你使用 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 无法访问外链,可 打开说明文档 复制全文粘贴。文档会随站点更新,复制内容可能过期,建议定期检查。

镜像简介
下载命令
镜像标签列表与下载命令
轩辕镜像,不浪费每一次拉取。
点击查看

groov Cert Signer

A web-based certificate signing tool for Opto 22 groov EPIC and groov RIO devices. Connect to your device, sign a certificate with your private CA, and push it back — all without leaving the app.

Ephemeral by design. CA materials are held in memory only. When the session ends or the container stops, all private data is gone.

How It Works

mermaid
flowchart TD
    START([Open the app]) --> INTRO[Accept Terms of Use]
    INTRO --> STEP1[Upload CSR]

    STEP1 --> HOW{How do you want<br/>to load the CSR?}

    HOW -->|Connect to device| CONNECT[Enter device address & API key]
    HOW -->|Upload a file| MANUAL[Select CSR file from your computer]

    CONNECT --> FETCHING[App connects to your groov device<br/>and fetches the CSR automatically]
    FETCHING --> STATUS{CSR status?}

    STATUS -->|Ready| GOT_CSR[CSR loaded successfully<br/>Device hostname & IPs detected]
    STATUS -->|No CSR on device| CREATE[Fill in hostname & country<br/>App creates a new certificate on the device]
    STATUS -->|Outdated CSR| CREATE

    CREATE --> GOT_CSR

    MANUAL --> PARSED[CSR parsed and details shown]

    GOT_CSR --> SANS[Review & edit SAN entries<br/>Pre-populated from device network info]
    PARSED --> SANS2[Review & edit SAN entries]

    SANS --> EXPIRY[Choose certificate expiration period]
    SANS2 --> EXPIRY

    EXPIRY --> CA{CA already loaded<br/>from previous signing?}
    CA -->|Yes| SIGN[Click Sign Certificate]
    CA -->|No| UPLOAD_CA[Upload CA certificate & key]
    UPLOAD_CA --> SIGN

    SIGN --> REVIEW[Review signed certificate details<br/>Subject, Issuer, SANs, validity, fingerprint]

    REVIEW --> DELIVER[Download & Deliver]

    DELIVER --> DOWNLOAD[Download certificate .pem]
    DELIVER --> REPORT[Download signing report .md]
    DELIVER --> PUSH_Q{Connected to device?}

    PUSH_Q -->|Yes| PUSH[Push certificate directly to device<br/>Device restarts with new cert]
    PUSH_Q -->|No| MANUAL_INSTALL[Upload cert to device manually<br/>via groov Manage]

    DELIVER --> NEXT{What next?}
    NEXT -->|Sign another| STEP1
    NEXT -->|Done| CLEAR[End session — all data cleared]

    classDef action fill:#e8f4f8,stroke:#2196F3,stroke-width:2px
    classDef choice fill:#fff9c4,stroke:#FFC107,stroke-width:2px
    classDef success fill:#e8f5e9,stroke:#4CAF50,stroke-width:2px
    classDef device fill:#fff3e0,stroke:#FF9800,stroke-width:2px

    class INTRO,STEP1,CONNECT,MANUAL,UPLOAD_CA,SIGN,REVIEW,DELIVER action
    class HOW,STATUS,CA,PUSH_Q,NEXT choice
    class GOT_CSR,PARSED,DOWNLOAD,REPORT,PUSH,CLEAR success
    class CREATE,FETCHING,MANUAL_INSTALL device

Quick Start

bash
docker run -d -p 2222:3000 --name groov-cert-signer --restart unless-stopped opto22/groov-cert-signer:latest

Open http://localhost:2222 in your browser.

Port 2222 is the external port on your machine. Change it if needed — for example, -p 8080:3000 opens the app at http://localhost:8080.

The image is on Docker Hub: https://hub.docker.com/r/opto22/groov-cert-signer

Supported platforms: linux/amd64 and linux/arm64 (macOS Apple Silicon & Intel, Windows x86-64, Linux)

Stop or remove

bash
docker stop groov-cert-signer    # stop the container
docker rm groov-cert-signer      # remove it entirely

Before You Start

1. Commission your groov device

Your groov EPIC or RIO should be commissioned following Opto 22 best practices. We recommend using an Incognito / Private browser window:

  1. Create the first Administrator account
  2. Set the system time zone (System > Time)
  3. Change the hostname (Network > Configure) from the factory default (opto-xx-xx-xx) to a name that makes sense for your environment
  4. Configure network interfaces as needed (DHCP, static IP, Wi-Fi, Open***, etc.)
  5. Go to Security > Web Server Certificate and click Create Certificate

2. Create an API key on the device

The app connects directly to your groov device to fetch the CSR, read network info, and push the signed certificate back. This requires a groov Manage API key:

  1. In groov Manage, go to Accounts > Users and create a new account (e.g., CertSigner)
  2. Grant the account System-wide Administrator permissions
  3. Open the account and copy the API Key — you'll use this when connecting from the app

Don't have network access to your device? You can still use the app by uploading a CSR file manually — see Manual CSR Upload below.

3. Have your CA ready

You'll need a private Certificate Authority (CA) — specifically, the CA certificate (.pem) and the CA private key (.key or .pem). If you don't have one yet, the app can create one for you during the signing step.

New CA? After creating a CA, install the CA certificate into the Trusted Certificate Store on every computer that accesses your groov devices. This tells browsers to trust your CA-signed certificates:

  • macOS: Open Keychain Access, import the certificate, set to "Always Trust"
  • Windows: Open certmgr.msc, import into Trusted Root Certification Authorities
  • Linux: Copy to /usr/local/share/ca-certificates/ and run update-ca-certificates

Signing a Certificate

Step 1 — Connect to your device

Click Fetch CSR from Device and enter your device's HTTPS address (e.g., https://epic-01 or https://192.168.1.100) along with the API key you created above.

The app will:

  • Fetch the pending CSR from the device
  • Read the device's hostname and IP addresses
  • Check that the CSR is current (not stale or mismatched)

If the device has no CSR or the existing one is outdated, the app offers to create a new certificate on the device directly — no need to log into groov Manage.

Step 2 — Review SANs

Subject Alternative Name (SAN) entries are pre-populated from the device's current network configuration (hostname and IP addresses). You can add, edit, or remove entries, or proceed with no SANs if the certificate should use the Subject CN only.

Step 3 — Set expiration

Choose the certificate validity period. Common presets are provided (90, 365, 397 days), or enter a custom number.

Step 4 — Upload CA and sign

Upload your CA certificate and key (or use the cached CA from a previous signing). Click Sign Certificate to generate the signed certificate.

Step 5 — Review

Verify the certificate details: subject, issuer, SANs, validity period, key size, and fingerprint.

Step 6 — Push to device

Click Push Certificate to Device to generate a fresh key pair, sign a new certificate with your CA, and push everything to the device in one step. The device restarts its web server automatically (~10-15 seconds).

You can also:

  • Download the certificate (.pem) for manual installation
  • Download a signing report (.md) with all certificate details for your records

Optionally check "Include CA certificate as intermediate chain" to send your CA cert along with the signed cert.

Sign another

Click Sign Another Certificate to return to Step 1 with your CA still loaded. Click End Session to clear all data from memory.


Manual CSR Upload

If you can't reach your device from the machine running this app, you can upload a CSR file instead:

  1. On the device, go to Security > Web Server Certificate and download the CSR
  2. In the app, click Upload CSR File (below the device connection button) and select the .csr or .pem file
  3. Continue with Steps 2-5 as normal
  4. Download the signed certificate and upload it manually via groov Manage

Note: When uploading a CSR file manually, make sure it's current. If the device has had a new certificate created since the CSR was downloaded, it may be outdated.


Development

For working on the code locally. Requires Node.js 20+ and OpenSSL.

bash
npm install
npm run dev
  • Frontend (React/Vite): http://localhost:5173
  • Backend (Express): http://localhost:3000

The Vite dev server proxies /api requests to Express automatically.

Tech stack

LayerTechnology
FrontendReact 19 + Vite
BackendNode.js + Express
Cert OpsOpenSSL CLI (child_process)
File Uploadsmulter (in-memory only)
ContainerDocker (multi-arch build)

Security

  • CA key and certificate are never written to disk — held in server memory for the session only
  • Temporary files for OpenSSL operations use secure temp directories with mode 0600 and are deleted immediately after use
  • No database, no persistent storage, no logging of sensitive data
  • Docker container runs as a non-root user
  • Designed for trusted networks — no authentication layer

Resources

  • groov EPIC SSL Certificate Tutorial
  • Opto 22 Developer Portal
  • https://hub.docker.com/r/opto22/groov-cert-signer

镜像拉取方式

您可以使用以下命令拉取该镜像。请将 <标签> 替换为具体的标签版本。如需查看所有可用标签版本,请访问 标签列表页面。

轩辕镜像加速拉取命令点我查看更多 groov-cert-signer 镜像标签

docker pull docker.xuanyuan.run/opto22/groov-cert-signer:<标签>

使用方法:

  • 登录认证方式
  • 免认证方式

DockerHub 原生拉取命令

docker pull opto22/groov-cert-signer:<标签>

轩辕镜像配置手册

按平台快速找到配置文档

一键安装

一键安装 Docker

Linux Docker 一键安装

AI

用 AI 使用轩辕镜像

agents.md · AI 对话 · 提示词

Docker

登录仓库拉取

登录认证 · 私有仓库

专属域名拉取

免登录 · 高速拉取

Linux

Docker 镜像配置

Windows / Mac

Docker Desktop 配置

MacOS OrbStack

OrbStack 容器

Apple Container

macOS 原生容器

Docker Compose

Compose 项目配置

NAS

群晖

Synology 配置

飞牛

fnOS 镜像配置

绿联

绿联 NAS

威联通

QNAP 配置

极空间

极空间 NAS

Unraid

Unraid NAS

企业仓库

其他仓库

ghcr · Quay · nvcr

Harbor 镜像源

Proxy Repository 对接

Portainer 镜像源

Registries 配置

Nexus 镜像源

Docker Proxy 缓存

开发工具

Dev Containers

VS Code 开发容器

Podman

Podman 配置指南

Singularity / Apptainer

HPC 科学计算容器

Kubernetes

K8s Containerd

Kubernetes · Containerd

K3s

轻量级集群

面板 / 网络

爱快路由

爱快 4.0 · iKuai 镜像加速

宝塔面板

一键配置镜像源

需要其他帮助?请查看我们的 常见问题Docker 镜像访问常见问题解答 或 提交工单

镜像拉取常见问题

功能

版本功能对比

功能对比 · 版本选择

支持的镜像仓库

Docker Hub · GCR · GHCR

专属域名用法

专属域名 · 开启停用 · 多仓库

新手拉取配置

登录 · 专属域名 · 配置

docker search 限制

专属域名 · Hub 搜索

不支持 push

仅支持 pull · 不支持

拉取速度原因

带宽 · 缓存 · 冷热镜像

错误码

402 与流量用尽

402 · 流量包 · 充值

401 认证失败

401 · docker login

manifest unknown

标签错误 · 镜像不存在

410 Gone 排查

410 · Docker 升级

429 限流

免费版 · 专业版 · 企业版 · 请求频率

其他报错

DNS 超时

DNS 解析 · 网络超时

TLS 证书失败

no matching manifest(架构)

账号

失败是否计费

manifest · blob · 计费

申请开发票(企业 / 个人)

企业 · 个人 · 工单

修改登录密码

网站 · 仓库 · 重置

注销账户

工单 · 数据 · 注销

原理

mirrors 不生效

daemon.json · 重启

去掉域名前缀

docker tag · 重命名

指定架构拉取

ARM64 · AMD64 · 多架构

latest 与「最新」

digest · 版本号 · 标签

查看全部问题→

用户好评

来自真实用户的反馈,见证轩辕镜像的优质服务

用户头像

oldzhang

运维工程师

Linux服务器

5

"Docker访问体验非常流畅,大镜像也能快速完成下载。"

轩辕镜像
镜像详情
...
opto22/groov-cert-signer
定价查看流量套餐与价格
博客Docker 镜像公告与技术博客
专业版 · 高速稳定拉取镜像
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
50GB 仅 ¥7/年
专业版 · 高速稳定拉取镜像
50GB 仅 ¥7/年
高速镜像下载·在线技术支持·99.95% SLA 保障·付费会员免广告
用户协议·隐私政策·增值电信业务经营许可证:浙B2-20261007·©2024-2026 源码跳动©2024-2026 杭州源码跳动科技有限公司·商务合作:点击复制邮箱

更多 groov-cert-signer 镜像推荐

groovy logo

library/groovy

Docker 官方镜像
Apache Groovy是针对Java平台的强大多范式语言,支持动态和静态类型,兼具静态编译能力,旨在通过简洁语法提升开发者生产力,可无缝集成Java程序,提供脚本、领域特定语言编写、元编程及函数式编程等功能。
160 次收藏5000万+ 次下载
9 天前更新
certbot/certbot logo

certbot/certbot

certbot
这是电子前哨基金会(EFF)Certbot工具的官方版本,用于从非营利性证书颁发机构Let's Encrypt获取TLS/SSL证书,该工具旨在自动化证书的获取、安装及更新流程,帮助网站管理员轻松实现HTTPS加密,保障网络通信安全,是目前广泛使用的免费SSL证书管理工具之一。
670 次收藏1亿+ 次下载
16 小时前更新
docker/dtr-notary-signer logo

docker/dtr-notary-signer

Docker 官方工具与组件镜像
暂无描述
1000万+ 次下载
6 年前更新
mirantis/dtr-notary-signer logo

mirantis/dtr-notary-signer

mirantis
暂无描述
50万+ 次下载
4 个月前更新
certbot/dns-cloudflare logo

certbot/dns-cloudflare

certbot
官方构建的EFF Certbot,包含用于通过Cloudflare进行DNS验证的插件,可处理DNS挑战以获取SSL/TLS证书。
94 次收藏500万+ 次下载
16 小时前更新
mirantis/dtr-notary-signer logo

mirantis/dtr-notary-signer

mirantis
暂无描述
50万+ 次下载
4 个月前更新

查看更多 groov-cert-signer 相关镜像