Skip to content

Commit

Permalink
Change to Spring Placeholder Syntax
Browse files Browse the repository at this point in the history
Let's prioritize running within the project for now.
Due to a difference between Spring and Docker's interpolation
syntax, the projects will favor Spring syntax so that
both the application and its tests can run successfully.
  • Loading branch information
jzheaux committed Nov 4, 2024
1 parent cb21695 commit 29d9bec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ services:
- ./metadata/authsources.php:/var/www/simplesamlphp/config/authsources.php
- ./metadata/one-relyingparties.php:/var/www/simplesamlphp/metadata/saml20-sp-remote.php
environment:
- PORT=${SERVER_PORT:-8080}
- PORT=${SERVER_PORT:8080}

idp-two.7f000001.nip.io:
image: kristophjunge/test-saml-idp:1.15
volumes:
- ./metadata/authsources.php:/var/www/simplesamlphp/config/authsources.php
- ./metadata/two-relyingparties.php:/var/www/simplesamlphp/metadata/saml20-sp-remote.php
environment:
- PORT=${SERVER_PORT:-8080}
- PORT=${SERVER_PORT:8080}

nginx:
image: nginx:stable
Expand Down

0 comments on commit 29d9bec

Please sign in to comment.