🐳 certimate

An open-source and free self-hosted SSL certificates ACME tool, automates the full-cycle of issuance, deployment, renewal, and monitoring visually. 完全开源免费的自托管 SSL 证书 ACME 工具,申请、部署、续期、监控全流程自动化可视化,支持各大主流云厂商。

Docker Ready 1 Services Ports: 8090 9,021 stars
1. Pull Image docker pull certimate/certimate
2. 1-Click Launch Command docker run -d -p 8090:8090 --name certimate certimate/certimate:latest
3. Compose Deployment docker compose up -d
docker/docker-compose.yml
Download .yml
version: "3.0"
services:
  certimate:
    image: certimate/certimate:latest
    container_name: certimate
    ports:
      - 8090:8090
    volumes:
      - /etc/localtime:/etc/localtime:ro
      - /etc/timezone:/etc/timezone:ro
      - ./data:/app/pb_data
    restart: unless-stopped