apix/docker-compose.yml
Khoa.vo 2a4bf8b58b
Some checks are pending
CI / build (18.x) (push) Waiting to run
CI / build (20.x) (push) Waiting to run
feat: updates before deployment
2026-01-06 13:26:11 +07:00

26 lines
589 B
YAML

services:
kv-pix:
image: git.khoavo.myds.me/vndangkhoa/apix:latest
container_name: kv-pix
restart: unless-stopped
ports:
- "8558:3000"
environment:
- NODE_ENV=production
- CRAWL4AI_URL=http://crawl4ai:8000
depends_on:
- crawl4ai
crawl4ai:
build:
context: ./services/crawl4ai
dockerfile: Dockerfile
container_name: crawl4ai
restart: unless-stopped
ports:
- "8559:8000"
environment:
- META_RATE_LIMIT_DELAY=60
- META_MAX_REQUESTS_HOUR=20
- BROWSER_HEADLESS=true
shm_size: '1gb'