Open Certificate Manager (OCM) - A secure, PKI certificate management system.
910
A secure, containerized PKI certificate management system for creating and managing SSL/TLS certificates with a modern web interface.
bcrypt password hashingversion: '3.8'
services:
# Open Certificate Manager
ocm:
image: robcowart/ocm:latest
container_name: ocm
restart: unless-stopped
hostname: ocm
ports:
- 8000:8000
volumes:
# Update this to the path to the data directory on your host machine
- ./data:/app/data
environment:
LOG_LEVEL: info
# SQLite Configuration (Default) - Comment out these two lines to use PostgreSQL instead
OCM_DB_TYPE: sqlite
OCM_DB_SQLITE_PATH: /app/data/ocm.db
# PostgreSQL Configuration - Uncomment the lines below to use PostgreSQL and add postgres to depends_on
# OCM_DB_TYPE: postgres
# OCM_DB_POSTGRES_HOST: postgres
# OCM_DB_POSTGRES_PORT: 5432
# OCM_DB_POSTGRES_DATABASE: ocm
# OCM_DB_POSTGRES_USER: ocm
# OCM_DB_POSTGRES_PASSWORD: ocm_password
# OCM_DB_POSTGRES_SSL_MODE: disable
Content type
Image
Digest
sha256:dd87fa29f…
Size
36.7 MB
Last updated
5 months ago
docker pull robcowart/ocm