Skip to content

northway/shibboleth-sp-dockerized

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Overview

This Docker image is Apache 2.4 with Shibboleth SP 2.6.0 installed running on CentOS 7.

This image can be used as a base image overriding the configuration with local changes.

Ports 80 and 443 are exposed for traffic.

A working example of how this image can be used can be found at https://github.com/UniconLabs/dockerized-idp-testbed.

Logs

Logs for httpd and shibd have been configured to output to the console so that Docker's logging facilities are supported. Each of these logs have been prefaced with an identifier that indicates the type of entry being outputted: httpd-error, httpd-combined, sp-shibd, sp-native, sp-transaction, sp-sign, etc.

Use as a Base

This image is ideal for use as a base image for one's own deployment.

For example, add your SP configurations to ./shibboleth-sp and you app files to ./appfiles/.

Next, assuming the Dockerfile is similar to this example:

FROM unicon/shibboleth-sp

ADD /shibboleth-sp/ /etc/shibboleth/
ADD /appfiles/ /var/www/html/ 

This will take the base image that is available in the Docker repository and download it. Next, it overrides all of the base files with your local configuration.

The dependant image can be built by running:

docker build --tag="<org_id>/<image_name>" .

Now, just execute the new image:

$ docker run -dP --name="app-local-test" <org_id>/<image_name> 

Building

From source:

$ docker build --tag="<org_id>/shibboleth-sp" github.com/unicon/shibboleth-sp-dockerized

Author

LICENSE

Copyright 2016 Unicon, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

About

A Shibboleth Service Provider (SP) base-image

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 89.2%
  • Shell 10.8%