Files
checkcle/docker/docker-compose-dev.yml
T
2025-05-09 21:28:07 +07:00

19 lines
419 B
YAML

services:
checkcle:
build:
context: .
dockerfile: Dockerfile
container_name: checkcle
restart: unless-stopped
ports:
- "8090:8090" # Allow access to frontend + PocketBase
volumes:
- pb_data:/app/pb_data # Ensure persistent data across rebuilds
ulimits:
nofile:
soft: 4096
hard: 8192
volumes:
pb_data: # Docker-managed volume for persistence