All Projects → evry → Docker Oidc Proxy

evry / Docker Oidc Proxy

Licence: mit
Docker Image built on Alpine Linux for secure OpenID Connect (OIDC) proxy authentication

Programming Languages

lua
6591 projects

Projects that are alternatives of or similar to Docker Oidc Proxy

Uwsgi Nginx Docker
Docker image with uWSGI and Nginx for applications in Python 3.5 and above and Python 2.7 (as Flask) in a single container. Optionally with Alpine Linux.
Stars: ✭ 466 (+412.09%)
Mutual labels:  alpine, docker-image, nginx
Dockerfile
📦 Dockerfiles from WebDevOps for PHP, Apache and Nginx (with PHP5 and PHP7)
Stars: ✭ 1,169 (+1184.62%)
Mutual labels:  alpine, docker-image, nginx
Socat
Run socat command in alpine container
Stars: ✭ 53 (-41.76%)
Mutual labels:  alpine, alpine-linux, docker-image
Nginx
NGINX Accelerated! This is a Docker image that creates a high performance (FAST!), optimized image for NGINX for use with Redis and PHP-FMP. Deliver sites and applications with performance, reliability, security, and scale. This NGINX server offers advanced performance, web and mobile acceleration, security controls, application monitoring, and management.
Stars: ✭ 157 (+72.53%)
Mutual labels:  docker-image, nginx, nginx-proxy
Docker Ruby Node
🐳 Alpine Docker Image with latest versions of Ruby, Node.js and yarn installed. This Docker Image is actively maintained and updated regularly.
Stars: ✭ 74 (-18.68%)
Mutual labels:  alpine, alpine-linux, docker-image
Uwsgi Nginx Flask Docker
Docker image with uWSGI and Nginx for Flask applications in Python running in a single container. Optionally with Alpine Linux.
Stars: ✭ 2,607 (+2764.84%)
Mutual labels:  alpine, docker-image, nginx
Dockerfiles
lots of dockerfiles, based on alpine
Stars: ✭ 69 (-24.18%)
Mutual labels:  alpine, docker-image, nginx
Dockerfiles
Discontinued. Fork at your will.
Stars: ✭ 384 (+321.98%)
Mutual labels:  alpine, alpine-linux, nginx
Docker Alpine
Docker containers running Alpine Linux and s6 for process management. Solid, reliable containers.
Stars: ✭ 574 (+530.77%)
Mutual labels:  alpine-linux, docker-image, nginx
Uvicorn Gunicorn Fastapi Docker
Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python 3.6 and above with performance auto-tuning. Optionally with Alpine Linux.
Stars: ✭ 1,014 (+1014.29%)
Mutual labels:  alpine, docker-image
Docker Kubectl
Containerized Kubernetes kubectl
Stars: ✭ 52 (-42.86%)
Mutual labels:  alpine-linux, docker-image
Svn Docker
Lightweight Docker image to build a container running an SVN server
Stars: ✭ 87 (-4.4%)
Mutual labels:  alpine-linux, docker-image
Docker Flarum
Flarum Docker image based on Alpine Linux
Stars: ✭ 43 (-52.75%)
Mutual labels:  alpine-linux, nginx
Magento2 Varnish Redis Ssl Docker Compose
Deploy Magento2 with Varnish Cache and Redis with SSL termination using Docker-compose tool
Stars: ✭ 37 (-59.34%)
Mutual labels:  docker-image, nginx
Postgresql Postgis Timescaledb
PostgreSQL + PostGIS + TimescaleDB docker image 🐘🌎📈
Stars: ✭ 19 (-79.12%)
Mutual labels:  alpine, docker-image
Nano Nginx
Nano container with nginx preconfigured as reverse proxy
Stars: ✭ 15 (-83.52%)
Mutual labels:  docker-image, nginx
Ip2geo
Импортер ipgeo-данных в файлы, понятные для nginx geoip module, с поддержкой кодов регионов РФ.
Stars: ✭ 59 (-35.16%)
Mutual labels:  nginx, nginx-proxy
Docker Lemp
🐳 Docker 快速搭建 LEMP 开发环境
Stars: ✭ 87 (-4.4%)
Mutual labels:  alpine, nginx
Docker Rtorrent Rutorrent
rTorrent and ruTorrent Docker image based on Alpine Linux
Stars: ✭ 75 (-17.58%)
Mutual labels:  alpine-linux, nginx
Docker Alpine Php Fpm
Docker image for php-fpm based on alpine linux that makes it small
Stars: ✭ 90 (-1.1%)
Mutual labels:  docker-image, nginx

evry/oidc-proxy Image Layers

Docker Image for OpenID Connect proxy authentication. Useful for putting services behind Keycloak and other OpenID Connect authentication.

This is Image used Nginx for proxying request and OpenResty with the lua-resty-openidc library to handle OpenID Connect authentication.

"Docker OIDC Proxy overview"

Supported tags and respective Dockerfile links

How to use this image

This proxy is controlled through environment variables, so there is no need to mess with any configuration files unless you want to of course. The following environment variables is used in this image:

  • OID_SESSION_SECRET: secret value for cookie sessions

  • OID_SESSION_CHECK_SSI: check SSI or not (on or off)

  • OID_SESSION_NAME: cookie session name

  • OID_REDIRECT_PATH: Redirect path after authentication

  • OID_DISCOVERY: OpenID provider well-known discovery URL

  • OID_CLIENT_ID: OpenID Client ID

  • OID_CLIENT_SECRET: OpenID Client Secret

  • OIDC_AUTH_METHOD: OpenID Connect authentication method (client_secret_basic or client_secret_post)

  • OIDC_RENEW_ACCESS_TOKEN_ON_EXPIRY: Enable silent renew of access token (true or false)

  • PROXY_HOST: Host name of the service to proxy

  • PROXY_PORT: Port of the service to proxy

  • PROXY_PROTOCOL: Protocol to the service to proxy (http or https)

  • ADD_HOST_HEADER: pass the proxy host header downstream (true or false)

docker run \
  -e OID_DISCOVERY=https://my-auth-server/auth \
  -e OID_CLIENT_ID=my-client \
  -e OID_CLIENT_SECRET=my-secret \
  -e PROXY_HOST=my-service \
  -e PROXY_PORT=80 \
  -e PROXY_PROTOCOL=http \
  -p 80:80 \
  evry/oidc-proxy

License

This Docker image is licensed under the MIT License.

Software contained in this image is licensed under the following:

Supported Docker versions

This image is officially supported on Docker version 1.12.

Support for older versions (down to 1.0) is provided on a best-effort basis.

User Feedback

Documentation

Issues

If you have any problems with or questions about this image, please contact us through a GitHub issue.

Contributing

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can.

Before you start to code, we recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].