Sign inSign up

pipekung/simplesamlphp-sp

By pipekung

Updated about 7 years ago

SimpleSAMLphp with nginx and php-fpm.

Image
0

500K+

pipekung/simplesamlphp-sp repository overview

Docker for SimpleSAMLphp as a Service Provider (SP)

This is a image to build a container for simeplesamlphp with nginx and php-fpm.

Supported tags

Quick Start

Skeleton directory in /var/www/html

├─ index.php
├─ ...
│   ├─ ...
│   └─ ...
├─ ...
└─ saml

To pull from docker hub:

$ docker pull pipekung/simplesamlphp-sp
Running

To simply run the container:

$ docker run -d -p 8000:80 -v /path/to/project:/var/www/html pipekung/simplesamlphp-sp
... via docker stack deploy or docker-compose

Create file stack.yml or docker-compose.yml

version: "3.1"
services:
  app:
    image: pipekung/simplesamlphp-sp
    volumes:
      - /path/to/project:/var/www/html
    ports:
      - 8000:80

Run docker stack deploy:

$ docker stack deploy -c stack.yml simplesamlphp_sp

or docker-compose:

$ docker-compose up -d

Tag summary

Content type

Image

Digest

Size

124.4 MB

Last updated

about 7 years ago

docker pull pipekung/simplesamlphp-sp