CertAutomator: Solve the pain of SSL certificate renewals with secure, multi-arch automation.
4.0K
The Centralized "Vault" that Solves the Pain of Certificate Renewals.
Note
This is a personal hobby project of mine, built to eliminate the manual toil and frustration of managing SSL certificates across different platforms.
CertAutomator is a powerful, secure, and user-friendly web application designed to eliminate the manual "pain" of SSL certificate management. It provides a single point of upload for your certificates and automatically distributes them to a wide range of services across your network.
privkey.enc) are AES-encrypted on disk.CertAutomator speaks the language of your favorite local and enterprise services:
docker-compose.ymlversion: '3.8'
services:
cert-automator:
image: lokeshsg/cert-automator:latest
container_name: cert-automator
restart: unless-stopped
ports:
- "5050:5050"
volumes:
- ./config.yaml:/app/config.yaml
- ./auth.json:/app/auth.json
- ./certs:/certs
- ./backup:/backup
- ./logs:/app/logs
environment:
- FLASK_SECRET=GenerateASecretStringHere
# Create persistent storage files
touch config.yaml auth.json
mkdir -p certs backup logs
# Fire it up
docker compose up -d
Visit http://[server-ip]:5050 to set your administrator credentials and initialize your encrypted vault!
CertAutomator is built for the community. If you encounter issues or want to suggest a new handler, please check the logs or reach out on GitHub!
Built with ❤️ for privacy and automation.
Content type
Image
Digest
sha256:9bba571ce…
Size
66.5 MB
Last updated
4 months ago
docker pull lokeshsg/cert-automator