version: '3.8' services: backend: build: ./backend ports: - "8000:8000" environment: - GROK_API_KEY=${GROK_API_KEY} - TELEGRAM_TOKEN=${TELEGRAM_TOKEN} - TELEGRAM_CHAT_ID=${TELEGRAM_CHAT_ID} volumes: - ./data:/app/data # For logs/CSVs restart: unless-stopped frontend: build: ./frontend ports: - "8501:8501" depends_on: - backend environment: - BACKEND_URL=http://backend:8000 restart: unless-stopped volumes: data: