mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 20:31:30 +00:00
579ee73ad5
- POSTGRES_PASSWORD and CERTCTL_API_KEY read from .env file - Added deploy/.env.example with documentation - Agent key volume (agent_keys) for key persistence across restarts - Agent healthcheck via pgrep - Resource limits: server 1CPU/512M, agent 0.5CPU/256M Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
296 B
Bash
9 lines
296 B
Bash
# certctl Docker Compose environment variables
|
|
# Copy this file to .env and customize for your deployment
|
|
|
|
# PostgreSQL password (change in production!)
|
|
POSTGRES_PASSWORD=certctl
|
|
|
|
# Agent API key (change in production! Generate with: openssl rand -hex 32)
|
|
CERTCTL_API_KEY=change-me-in-production
|