Quickstart
Welcome to CheckCle! Get started with CheckCle in minutes.
π₯οΈ System Requirements
π§Minimum Requirements:
β
Recommended for Production:
π Deployment
1
Deploy CheckCle as a Docker container
# Create docker-compose.yml
version: '3.9'
services:
checkcle:
image: operacle/checkcle:latest
container_name: checkcle
restart: unless-stopped
ports:
- "8090:8090" # Web Application
volumes:
- /opt/pb_data:/mnt/pb_data # Host directory mapped to container path
ulimits:
nofile:
soft: 4096
hard: 8192# Docker Run Command
docker run -d --name checkcle --restart unless-stopped -p 8090:8090 -v /opt/pb_data:/mnt/pb_data --ulimit nofile=4096:8192 operacle/checkcle:latestcurl -fsSL https://checkcle.io/install.sh | bashUninstall CheckCle container and image
β
Recommended Tips for Deploying CheckCle
Last updated
