# docker-compose.yml version: '3.8' services: ui: image: ocr-comparison-ui build: context: . dockerfile: dockerfile volumes: - ./workspace:/workspace ports: - "8501:8501" command: streamlit run app.py --server.port=8501 eval_ui: image: ocr-comparison-ui build: context: . dockerfile: dockerfile volumes: - ./workspace:/workspace ports: - "8601:8601" command: streamlit run ocr_eval_app.py --server.port=8601