Spaces:
Running
Running
File size: 515 Bytes
e73506b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | version: '3.8'
services:
dt-explorer:
build:
context: .
dockerfile: Dockerfile
container_name: dt_explorer
ports:
- "8501:8501"
volumes:
# Mount models and data directories to reflect updates in real-time
- ./models:/app/models
- ./data:/app/data
- ./artifacts:/app/artifacts
environment:
- PYTHONUNBUFFERED=1
# Optional: set wandb or neuronpedia tokens here if needed
# - WANDB_API_KEY=${WANDB_API_KEY}
restart: unless-stopped
|