forked from internet2/InCommonTAP-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
42 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 |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| #!/bin/bash | ||
|
|
||
| # Build the dependency containers | ||
| docker build deps/ldap -t tier-demo-ldap | ||
| docker build deps/mysql -t tier-demo-mysql | ||
| docker build deps/rabbit -t tier-demo-rabbit | ||
|
|
||
| # build the sis web app | ||
| docker build sis-app -t tier-sis-web | ||
|
|
||
| # Build the Shib IDP | ||
| docker build shib-idp -t tier-demo-idp | ||
|
|
||
| # Build Grouper | ||
| docker build grouper -t tier-demo-grouper | ||
|
|
||
| # Build Midpoint | ||
| #docker build midpoint -t tier-demo-midpoint | ||
|
|
||
| # build the demo app | ||
| docker build test-app -t tier-demo-web-app | ||
|
|
||
| # build the canvas provisioner | ||
| docker build canvas -t tier-demo-canvas | ||
|
|
||
| # build the attribute slammer | ||
| docker build attribute-slammer -t tier-attribute-slammer |
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 |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| #!/bin/bash | ||
|
|
||
| docker stop tier-demo-ldap | ||
| docker stop tier-demo-mysql | ||
| docker stop tier-demo-idp | ||
| docker stop tier-demo-grouper | ||
| docker stop tier-demo-web-app | ||
| docker stop tier-demo-rabbit | ||
|
|
||
| docker rm tier-demo-ldap | ||
| docker rm tier-demo-mysql | ||
| docker rm tier-demo-idp | ||
| docker rm tier-demo-grouper | ||
| docker rm tier-demo-web-app | ||
| docker rm tier-demo-rabbit |