Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: spid-saml-check tls check demo #153

Merged
merged 4 commits into from
Aug 29, 2024
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
4 changes: 2 additions & 2 deletions Docker-compose/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
In order to execute the run script you need:

* jq
* docker-compose
* docker version 3

Installation example in Ubuntu:

```
sudo apt install jq docker-compose
sudo apt install jq
```

For docker-compose you can also [see here](https://docs.docker.com/compose/install/other/).
Expand Down
3 changes: 2 additions & 1 deletion Docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:
satosa-mongo:
image: mongo
Expand Down Expand Up @@ -146,6 +145,8 @@ services:
spid-samlcheck:
image: italia/spid-saml-check
container_name: spid-samlcheck
environment:
- NODE_TLS_REJECT_UNAUTHORIZED=${NODE_TLS_REJECT_UNAUTHORIZED:-0}
ports:
- "8443:8443"
networks:
Expand Down
2 changes: 1 addition & 1 deletion Docker-compose/rm-persistent-volumes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ echo -e "\n"
echo -e "Inizio le procedure per fare il down della composizione e poi CANCELLARE i volumi persistenti! \n"

echo -e "Fermo la composizione! \n"
docker-compose -f docker-compose.yml down -v;
docker compose -f docker-compose.yml down -v;

echo -e "\n"

Expand Down
Loading