SIGN IN SIGN UP
HKUDS / DeepTutor UNCLAIMED

"DeepTutor: AI-Powered Personalized Learning Assistant"

0 0 12 Python
# ============================================
# DeepTutor Docker Compose - Development Override
# ============================================
# Use with: docker compose -f docker-compose.yml -f docker-compose.dev.yml up
2026-01-03 04:01:06 +08:00
#
# This override file provides:
# - Hot-reload for both frontend and backend
# - Source code mounting for live editing
# - Development-friendly logging
# ============================================
services:
deeptutor:
build:
target: development
2026-01-03 04:01:06 +08:00
volumes:
# Mount backend source code for hot-reload
- ./deeptutor:/app/deeptutor:ro
- ./deeptutor_cli:/app/deeptutor_cli:ro
2026-01-03 04:01:06 +08:00
- ./scripts:/app/scripts:ro
# Mount frontend source for hot-reload
- ./web/app:/app/web/app:ro
- ./web/components:/app/web/components:ro
- ./web/lib:/app/web/lib:ro
- ./web/hooks:/app/web/hooks:ro
- ./web/context:/app/web/context:ro
- ./web/i18n:/app/web/i18n:ro
- ./web/locales:/app/web/locales:ro
- ./web/public:/app/web/public:ro
2026-01-03 04:01:06 +08:00
# Mount data directories (writable) - output to local ./data
- ./data/user:/app/data/user
- ./data/knowledge_bases:/app/data/knowledge_bases
2026-01-03 04:01:06 +08:00
environment:
- NODE_ENV=development
- NEXT_PUBLIC_API_BASE=http://localhost:${BACKEND_PORT:-8001}
2026-01-03 04:01:06 +08:00
# In development, we might want to see logs directly
# Uncomment the following to disable log files and see everything in console
# logging:
# driver: "json-file"
# options:
# max-size: "10m"
# max-file: "3"
networks:
- deeptutor-network