Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 610 Bytes

README.md

File metadata and controls

37 lines (28 loc) · 610 Bytes

mini-saml-idp

Lightweight SAML2 IDP that can be used for testing

run

Run using docker-compose:

  mini-saml-idp:
    container_name: mini-saml-idp
    image: mini-saml-idp:latest
    ports:
      - "9009:9009"
    volumes:
      - ./saml/:/data/
    environment:
      IDP_BASE_URL: http://localhost:9009
      SERVICE_METADATA_URL: http://my-saml-sp/saml/metadata
      USER_JSON: /data/users.json

If you do not mount a users.json the default one is used.

docker build

first enable

make build

build multi-arch docker image

docker login quay.io
make publish