Last active
May 5, 2018 12:29
-
-
Save gboddin/8362af707eb6d414006ac637caaab9a4 to your computer and use it in GitHub Desktop.
docker-compose-pcas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
pcas-client: | |
build: | |
context: ./ | |
dockerfile: Dockerfile.mock-client | |
image: openeuropa/pcas-client | |
ports: | |
- 8002:8002 | |
volumes: | |
- ./pcas-docker.yaml:/app/config/packages/p_cas.yaml | |
pcas-server: | |
build: | |
context: ./ | |
dockerfile: Dockerfile.mock-server | |
image: openeuropa/pcas-server | |
ports: | |
- 8001:8001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
p_cas: | |
logger_startup_message: 'Logger just got started!!! (from demo app config)' | |
protocol: | |
login: | |
uri: http://127.0.0.1:8001/login | |
allowed_parameters: | |
- service | |
- renew | |
- gateway | |
servicevalidate: | |
uri: http://pcas-server:8001/serviceValidate | |
allowed_parameters: | |
- service | |
- ticket | |
- pgtUrl | |
- renew | |
- format | |
logout: | |
uri: http://127.0.0.1:8001/logout | |
allowed_parameters: | |
- service |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment