Userino is an open source service for user authorization. Service handles authorization for your app. You can setup different authorization type using this service.
Almost every app requires authorization to define user identity. Userino is created to be ready to use service that can handle everything related to user auth. It is secure and easy to ingrate service.
| Auth Type | Status |
|---|---|
| local (password) | ✓ |
| firebase | ✓ |
| otp | ✓ |
| phone | soon |
| to do | |
| to do |
docker-compose.yml file
version: "3.9"
services:
userino:
image: zvsx001/userino-server
ports:
- 7301:7301
- 7302:7302
- 7303:7303
environment:
REDIS_HOST: redis://host.docker.internal:6379
KAFKA_HOSTS: host.docker.internal:9092,host.docker.internal:9093
PG: postgresql://postgres:[email protected]:5432/auth
PG - postgres connection stringREDIS_HOST - redis urlKAFKA_HOSTS - list of hosts for kafka. Default: 0.0.0.0:9093,0.0.0.0:9094,0.0.0.0:9095PORT - port for public user server. Default: 7301DASHBOARD_PORT - port for dashboard server. Default: 7302ADMIN_PORT - port for admin api server. Default: 7303MIGRATIONS_DISABLED - migrations will not be run during server startup. Migrations are enabled by default.Content type
Image
Digest
sha256:1f4e4a023…
Size
178.3 MB
Last updated
almost 3 years ago
docker pull zvsx001/userino-server