proxy-go/docker-compose.yml
wood chen a4437b9a39 feat(auth): Implement OAuth-based authentication with Q58 platform
- Replace password-based login with OAuth authentication
- Add OAuth login and callback handlers
- Support user whitelist via environment variables
- Update login page to use OAuth flow
- Remove legacy metrics-related authentication configuration
- Enhance token management with username tracking
2025-02-17 05:43:23 +08:00

13 lines
299 B
YAML

services:
proxy:
image: woodchen/proxy-go:latest
container_name: proxy-go
ports:
- "3336:3336"
volumes:
- ./data:/app/data
environment:
- TZ=Asia/Shanghai
- OAUTH_CLIENT_ID=your_client_id
- OAUTH_ALLOWED_USERS=user1,user2,user3
restart: always