Skip to content

OpenID Connect Identity (OIDC) and OAuth 2.0 Provider with Pluggable Connectors

Notifications You must be signed in to change notification settings

Sebbia/docker-dex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Docker image of dex

dex

Dex is an identity service that uses [OpenID Connect][openid-connect] to drive authentication for other apps.

Dex acts as a portal to other identity providers through "connectors." This lets dex defer authentication to LDAP servers, SAML providers, or established identity providers like GitHub, Google, and Active Directory. Clients write their authentication logic once to talk to dex, then dex handles the protocols for a given backend.

Read more about dex here

Simple usage

$ docker run --name dex \ 
  -p 5556:5556 \
  -v "${PWD}/dex-config.yaml:/config.yaml" \
  -v "${PWD}/web:/web" \
  navrocky/dex serve /config.yaml

Where: -p 5556:5556 where HTTP endpoint is

-v "${PWD}/dex-config.yaml:/config.yaml" - your dex configuration file. See at example config

-v "${PWD}/web:/web" - optional directory with web static resources, forms and themes.

Docker compose

TODO

About

OpenID Connect Identity (OIDC) and OAuth 2.0 Provider with Pluggable Connectors

Resources

Stars

Watchers

Forks

Packages

No packages published