Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
shib-idp/test-compose/sp/compose.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
11 lines (10 sloc)
330 Bytes
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
#!/bin/sh | |
docker-compose up --build -d | |
if [ $? == '0' ]; then | |
echo "" | |
echo "If everything above was successful, your SP metadata can be retreived with this command (after a minute or two):" | |
echo " curl -k -s https://127.0.0.1:8443/Shibboleth.sso/Metadata" | |
echo "" | |
else | |
echo "An error was encountered." | |
fi |