-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copy docker-compose.yml changes into actions-services.yml
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,11 @@ services: | |
- test-browser | ||
environment: | ||
- PROFILE_URL_FOR_TESTS=http://ssp-sp1.local/module.php/core/authenticate.php?as=ssp-hub | ||
- MFA_SETUP_URL_FOR_TESTS=http://ssp-sp1.local/module.php/core/authenticate.php?as=ssp-hub | ||
- [email protected] | ||
- ADMIN_PASS=b | ||
- SECRET_SALT=abc123 | ||
- IDP_NAME=x | ||
volumes: | ||
- ./dockerbuild/run-integration-tests.sh:/data/run-integration-tests.sh | ||
- ./dockerbuild/run-metadata-tests.sh:/data/run-metadata-tests.sh | ||
|
@@ -75,12 +80,23 @@ services: | |
|
||
# Enable checking our test metadata | ||
- ./dockerbuild/run-metadata-tests.sh:/data/run-metadata-tests.sh | ||
|
||
# Include the features folder (for the FakeIdBrokerClient class) | ||
- ./features:/data/features | ||
command: 'bash -c "/data/enable-exampleauth-module.sh && /data/run.sh"' | ||
environment: | ||
ADMIN_EMAIL: "[email protected]" | ||
ADMIN_PASS: "a" | ||
SECRET_SALT: "not-secret-h57fjemb&dn^nsJFGNjweJ" | ||
IDP_NAME: "IDP 1" | ||
IDP_DOMAIN_NAME: "mfaidp" | ||
ID_BROKER_ACCESS_TOKEN: "dummy" | ||
ID_BROKER_ASSERT_VALID_IP: "false" | ||
ID_BROKER_BASE_URI: "dummy" | ||
ID_BROKER_TRUSTED_IP_RANGES: "192.168.0.1/8" | ||
MFA_SETUP_URL: "http://ssp-hub-sp1:8083/module.php/core/authenticate.php?as=ssp-hub-custom-port" | ||
MFA_SETUP_URL_FOR_TESTS: "http://ssp-sp1.local/module.php/core/authenticate.php?as=ssp-hub" | ||
REMEMBER_ME_SECRET: "12345" | ||
PROFILE_URL: "http://ssp-hub-sp1:8083/module.php/core/authenticate.php?as=ssp-hub-custom-port" | ||
PROFILE_URL_FOR_TESTS: "http://ssp-sp1.local/module.php/core/authenticate.php?as=ssp-hub" | ||
SECURE_COOKIE: "false" | ||
|