mirror of
https://github.com/unclecode/crawl4ai.git
synced 2026-06-11 00:08:01 +00:00
10 lines
190 B
YAML
10 lines
190 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
web:
|
|
build: .
|
|
command: uvicorn main:app --host 0.0.0.0 --port 80 --workers $(nproc)
|
|
ports:
|
|
- "80:80"
|
|
environment:
|
|
- PYTHONUNBUFFERED=1 |