Self-hosted Identity for modern developers
Deploy your own OAuth 2.0 authentication server in minutes. Docker-native, and designed for privacy. Take back control of your user data.
Deployment
Up and running in seconds
Simply add rIDP to your docker-compose stack. No complex configuration required.
version: '3.8'
services:
ridp:
image: ridp/server:latest
ports:
- "8000:8000"
environment:
- SECRET_KEY=your-secret-key
- ALLOWED_HOSTS=localhost
volumes:
- ridp_data:/app/data
volumes:
ridp_data: