mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
* Devenv:SAML: devenv block with saml test app Includes documentation, couple custom users and actual docker-compose of course :) Ref: #4780
17 lines
613 B
YAML
17 lines
613 B
YAML
saml:
|
|
container_name: saml
|
|
image: kristophjunge/test-saml-idp
|
|
environment:
|
|
SIMPLESAMLPHP_SP_ENTITY_ID: http://grafana.com
|
|
SIMPLESAMLPHP_SP_ASSERTION_CONSUMER_SERVICE: http://localhost/simplesaml/module.php/saml/sp/saml2-acs.php/test-sp
|
|
SIMPLESAMLPHP_SP_SINGLE_LOGOUT_SERVICE: http://localhost/simplesaml/module.php/saml/sp/saml2-logout.php/test-sp
|
|
SIMPLESAMLPHP_ADMIN_PASSWORD: grafana
|
|
SIMPLESAMLPHP_SECRET_SALT: salt
|
|
ports:
|
|
- "8080:8080"
|
|
- "8443:8443"
|
|
volumes:
|
|
- ./docker/blocks/saml/users.php:/var/www/simplesamlphp/config/authsources.php
|
|
|
|
|