15 lines
269 B
YAML
15 lines
269 B
YAML
# docker-compose.yml
|
|
version: '3.8'
|
|
|
|
services:
|
|
ui:
|
|
image: ocr-comparison-ui
|
|
volumes:
|
|
- ./workspace:/workspace
|
|
build:
|
|
context: .
|
|
dockerfile: dockerfile # Dockerfile의 상대 경로를 직접 지정
|
|
ports:
|
|
- "8501:8501"
|
|
|