Skip to content

Commit deec12c

Browse files
author
Bas
committed
Fix devconf
Some things were needed in order to start Teams in Devconf
1 parent 396b5ba commit deec12c

4 files changed

Lines changed: 16 additions & 17 deletions

File tree

core/docker-compose.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -62,19 +62,18 @@ services:
6262
- ./mongo/:/docker-entrypoint-initdb.d/
6363
- openconext_mongodb:/bitnami/mongodb
6464
healthcheck:
65-
test: ['CMD', 'true']
66-
# test:
67-
# [
68-
# "CMD",
69-
# "mongosh",
70-
# "-u",
71-
# "managerw",
72-
# "-p",
73-
# "secret",
74-
# "--eval",
75-
# "db.stats().ok",
76-
# "mongodb://127.0.0.1/manage",
77-
# ]
65+
test:
66+
[
67+
"CMD",
68+
"mongosh",
69+
"-u",
70+
"managerw",
71+
"-p",
72+
"secret",
73+
"--eval",
74+
"db.stats().ok",
75+
"mongodb://127.0.0.1/manage",
76+
]
7877
interval: 10s
7978
timeout: 10s
8079
retries: 3

core/scripts/spdashboard.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"coin:signature_method": "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"
2222
},
2323
"allowedEntities": [],
24-
"metadataurl": "https://teams.test2.surfconext.nl/saml/metadata",
24+
"metadataurl": "https://teams.dev.surfconext.nl/saml/metadata",
2525
"revisionnote": "Initial import"
2626
}
2727
}

core/scripts/teams.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"coin:signature_method": "http://www.w3.org/2001/04/xmldsig-more#rsa-sha256"
2121
},
2222
"allowedEntities": [],
23-
"metadataurl": "https://teams.test2.surfconext.nl/Shibboleth.sso/Metadata",
23+
"metadataurl": "https://teams.dev.surfconext.nl/Shibboleth.sso/Metadata",
2424
"revisionnote": "Initial import"
2525
}
2626
}

core/stop-dev-env.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
# Use docker compose to start the environment but with the modified override file(s)
44
echo -e "Starting the dev environment with the following command:\n"
55

6-
echo -e "docker compose --profile oidc -f docker-compose.yml down\n"
7-
docker compose --profile oidc -f docker-compose.yml down
6+
echo -e "docker compose --profile \"*\" -f docker-compose.yml down\n"
7+
docker compose --profile "*" -f docker-compose.yml down

0 commit comments

Comments
 (0)