SimpleSAMLphp with nginx and php-fpm.
500K+
This is a image to build a container for simeplesamlphp with nginx and php-fpm.
Skeleton directory in /var/www/html
├─ index.php
├─ ...
│ ├─ ...
│ └─ ...
├─ ...
└─ saml
To pull from docker hub:
$ docker pull pipekung/simplesamlphp-sp
To simply run the container:
$ docker run -d -p 8000:80 -v /path/to/project:/var/www/html pipekung/simplesamlphp-sp
docker stack deploy or docker-composeCreate 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
Content type
Image
Digest
Size
124.4 MB
Last updated
about 7 years ago
docker pull pipekung/simplesamlphp-sp