15 lines
335 B
YAML
15 lines
335 B
YAML
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 |