File size: 403 Bytes
1e3df84 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | version: "3.8"
services:
tesseract-app:
build:
context: .
dockerfile: Dockerfile
ports:
- "8000:8000"
volumes:
- ./Model_weights:/app/Model_weights:ro
- ./Input_Images:/app/Input_Images:ro
- ./Results:/app/Results
environment:
- PYTHONUNBUFFERED=1
deploy:
resources:
limits:
memory: 8G
restart: unless-stopped
|