Files
drc-ners-nlp/compose.yml
T
2025-10-05 18:14:15 +02:00

22 lines
494 B
YAML

services:
app:
build:
context: .
dockerfile: Dockerfile
image: drc-ners:uv
working_dir: /app
tty: true
stdin_open: true
environment:
NERS_ENV: production
STREAMLIT_SERVER_ADDRESS: 0.0.0.0
# expose Streamlit for `ners web run`
ports:
- "8501:8501"
volumes:
- ./assets:/app/assets
- ./config:/app/config
- ./data:/app/data
# default command shows CLI help; override per run
command: ["ners", "--help"]