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