섹션 조회 추가

This commit is contained in:
2025-09-03 10:29:02 +09:00
parent 443b2cc82e
commit eed8723f51
6 changed files with 493 additions and 27 deletions

View File

@@ -4,11 +4,23 @@ version: '3.8'
services:
ui:
image: ocr-comparison-ui
volumes:
- ./workspace:/workspace
build:
context: .
dockerfile: dockerfile # Dockerfile의 상대 경로를 직접 지정
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