# jwt-auth-example **Repository Path**: mirrors_coreos/jwt-auth-example ## Basic Information - **Project Name**: jwt-auth-example - **Description**: Documentation and example server for Quay.io JWT Custom Auth - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README [![Container Repository on Quay.io](https://quay.io/repository/coreos/jwt-auth-example/status "Container Repository on Quay.io")](https://quay.io/repository/coreos/jwt-auth-example) # Quay.io JWT Custom Auth This repository contains documentation and an example server for Quay.io JWT Custom Authentication. ## JWT Auth protocol Details about how to implement the JWT auth protocol can be found in the PROTOCOL document. ## To run the example server via Docker: ``` docker run -ti -p 6000:6000 quay.io/coreos/jwt-auth-example ``` ## To run the example server directly: ``` python application.py ``` ## To test the example server with `curl`: ``` curl --user cooluser:password http://localhost:6000/user/exists curl --user cooluser:password http://localhost:6000/user/verify ```