AirGate/docker-compose.yml
seaislee1209 8b49d49048 feat: add edit sub-account profile + verify all password features
- Add edit profile (display name, phone, email) with Volcengine sync
- Add IAMService.update_user for Volcengine UpdateUser API
- Add edit-profile API endpoint and URL
- Add Edit Profile dialog in IAMUserList frontend
- Verify admin change password, sub-account change password, set login password all working

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 15:57:02 +08:00

28 lines
479 B
YAML

version: '3.8'
services:
backend:
build: ./backend
ports:
- "8101:8100"
env_file:
- .env
environment:
- DJANGO_ALLOWED_HOSTS=*
- CORS_ALLOWED_ORIGINS=http://localhost:5174,http://localhost
- DB_DIR=/app/data
volumes:
- backend-data:/app/data
restart: unless-stopped
frontend:
build: ./frontend
ports:
- "5174:80"
depends_on:
- backend
restart: unless-stopped
volumes:
backend-data: