Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ RUN yum -y install epel-release \
&& yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm \
&& yum -y update \
&& yum-config-manager --enable remi-php72 \
&& yum -y install httpd mod_ssl php php-ldap php-mbstring php-memcache php-mcrypt php-pdo php-pear php-xml wget \
&& yum -y install httpd mod_ssl wget \
&& yum -y install php php-ldap php-mbstring php-memcache php-mcrypt php-pdo php-pear php-xml \
&& yum -y clean all

RUN ssp_version=1.17.2; \
ssp_hash=0e2fd641e8cba2966437fb64591e28a73fb90bae3bc97949c60a47a5b8c1e80e; \
RUN ssp_version=1.18.4; \
ssp_hash=7530dec7290ba5efaac08cb17042819a96dc530e217c3810cdde9be76d57b2ca; \
wget https://github.com/simplesamlphp/simplesamlphp/releases/download/v$ssp_version/simplesamlphp-$ssp_version.tar.gz \
&& echo "$ssp_hash simplesamlphp-$ssp_version.tar.gz" | sha256sum -c - \
&& cd /var \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![](https://badge.imagelayers.io/unicon/simplesamlphp:latest.svg)](https://imagelayers.io/?images=unicon/simplesamlphp:latest 'image layer analysis')

## Overview
This Docker image contains a deployed SimpleSAMLphp IdP/SP based on PHP 7.2 running on Appache HTTP Server 2.4 on the latest CentOS 7 base. This image is a base image and should be used to set the content and configuration with local changes. It is suitable for use as a standalone IdP application or as a base to deploy another PHP application that will be protected by the service provider module.
This Docker image contains a deployed SimpleSAMLphp IdP/SP based on PHP 7.2 running on Apache HTTP Server 2.4 on the latest CentOS 7 base. This image is a base image and should be used to set the content and configuration with local changes. It is suitable for use as a standalone IdP application or as a base to deploy another PHP application that will be protected by the service provider module.

```
[rootdir]
Expand All @@ -12,7 +12,7 @@ This Docker image contains a deployed SimpleSAMLphp IdP/SP based on PHP 7.2 runn
| |-- log/
| | |-- httpd/ - The log files for Apache HTTP Server
| |-- simplesamlphp/ - The base SimpleSAMLphp directory
| | |-- conf/ - The SimpleSAMLphp configuration directory
| | |-- config/ - The SimpleSAMLphp configuration directory
| |-- www/
| | |-- html/ - The base Apache HTTP Server document root directory
```
Expand Down Expand Up @@ -128,7 +128,7 @@ $ docker build --tag="<org_id>/simplesamlphp" github.com/unicon/simplesamlphp-do

## LICENSE

Copyright 2018 Unicon, Inc.
Copyright 2020 Unicon, Inc.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down