Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #13 from docker/201906-shib-upgrade
Upgrade to shib idp tier image for shib version 3.4 (not "latest")
wgthom committed Apr 26, 2019
2 parents d463a7d + 3820f6d commit 7e1c4f2
Showing 5 changed files with 51 additions and 47 deletions.
88 changes: 44 additions & 44 deletions README.md
@@ -7,59 +7,59 @@ A set of Grouper images that are used during I2/TIER training.

```
docker run -d -p 389:389 -p 8443:443 -p 3306:3306 \
--name grouper-demo tier/grouper-training-env:full_demo
--name grouper-demo tier/gte:full_demo-201906
```

Browse to `https://localhost/grouper`
Browse to `https://localhost:8443/grouper`

## Exercises

```
docker run -d -p 80:80 -p 389:389 -p 8443:443 -p 3306:3306 \
--name gte tier/grouper-training-env:exXXX
--name gte tier/gte:XXX.X.{X|end}-201906
```

Current tags:
- ex101.1.1
- ex201.1.1
- ex201.1.end
- ex201.2.1
- ex201.2.end
- ex201.3.1
- ex201.3.end
- ex201.4.1
- ex201.4.end
- ex201.5.1
- ex201.5.end
- ex211.1.1
- ex301.4.1
- ex401.1.1
- ex401.1.2
- ex401.1.3
- ex401.1.4
- ex401.1.5
- ex401.1.6
- ex401.1.end
- ex401.2.1
- ex401.2.2
- ex401.2.3
- ex401.2.4
- ex401.2.5
- ex401.2.6
- ex401.2.7
- ex401.2.8
- ex401.2.9
- ex401.2.end
- ex401.3.1
- ex401.3.2
- ex401.3.3
- ex401.3.4
- ex401.3.5
- ex401.3.6
- ex401.3.7
- ex401.3.end
- ex401.4.1
- ex401.4.end
- 101.1.1-201906
- 201.1.1-201906
- 201.1.end-201906
- 201.2.1-201906
- 201.2.end-201906
- 201.3.1-201906
- 201.3.end-201906
- 201.4.1-201906
- 201.4.end-201906
- 201.5.1-201906
- 201.5.end-201906
- 211.1.1-201906
- 301.4.1-201906
- 401.1.1-201906
- 401.1.2-201906
- 401.1.3-201906
- 401.1.4-201906
- 401.1.5-201906
- 401.1.6-201906
- 401.1.end-201906
- 401.2.1-201906
- 401.2.2-201906
- 401.2.3-201906
- 401.2.4-201906
- 401.2.5-201906
- 401.2.6-201906
- 401.2.7-201906
- 401.2.8-201906
- 401.2.9-201906
- 401.2.end-201906
- 401.3.1-201906
- 401.3.2-201906
- 401.3.3-201906
- 401.3.4-201906
- 401.3.5-201906
- 401.3.6-201906
- 401.3.7-201906
- 401.3.end-201906
- 401.4.1-201906
- 401.4.end-201906

Browse to `https://localhost:8443/grouper` for Grouper. There is also an app that dumps the SP user attributes at `https://localhost:8443/app`.

@@ -92,6 +92,6 @@ Now start the ex401 Grouper with this slightly modified command:

```bash
docker run -d -p 389:389 -p 8443:443 -p 3306:3306 \
--link rabbitmq:rabbitmq --name gte tier/grouper-training-env:exXXX
--link rabbitmq:rabbitmq --name tier/gte:401.{X.X|end}-201906

```
4 changes: 2 additions & 2 deletions base/Dockerfile
@@ -1,4 +1,4 @@
FROM unicon/shibboleth-idp:3.3.3 as idp
FROM tier/shib-idp:3.4.3_20190201 as idp

# Grouper version for the entire GTE
FROM tier/grouper:latest
@@ -84,4 +84,4 @@ RUN cp /opt/tier-support/grouper.xml /opt/tier-support/grouper-ws.xml /opt/tomca

EXPOSE 389 3306 4443

CMD ["grouper"]
CMD ["grouper"]
@@ -1,4 +1,4 @@
<Context docBase="/opt/shibboleth-idp/webapp"
<Context docBase="/opt/shibboleth-idp/war/idp.war"
privileged="true"
antiResourceLocking="false"
path="/idp">
3 changes: 3 additions & 0 deletions base/manualBuild.sh
@@ -0,0 +1,3 @@
source ../buildVersion.sh
echo "Building tier/gte version ${VERSION_TAG}"
docker build --tag=tier/gte:base-${VERSION_TAG} .
1 change: 1 addition & 0 deletions ex101/run.sh
@@ -0,0 +1 @@
docker run -d -p 389:389 -p 8443:443 -p 3306:3306 --name grouper-demo tier/gte:101.1.1-201906-shib-upgrade

0 comments on commit 7e1c4f2

Please sign in to comment.