Skip to content

Commit

Permalink
minor fixes
Browse files Browse the repository at this point in the history
- missing restart policy
- correct port for authorizer
  • Loading branch information
kosarko committed Jan 12, 2024
1 parent d597d5f commit 26a6b6c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ version: '3'
services:
nginx:
image: ghcr.io/ufal/dockerized-nginx-with-shibboleth/nginx-shib:latest
restart: unless-stopped
build: ./nginx
ports:
- 80:80
Expand All @@ -12,7 +13,7 @@ services:
- ./nginx/ssl:/ssl
environment:
- NGINX_ENVSUBST_FILTER=NGINX_
- NGINX_SHIBAUTHORIZER=${NGINX_SHIBAUTHORIZER:-shibboleth:12345}
- NGINX_SHIBAUTHORIZER=${NGINX_SHIBAUTHORIZER:-shibboleth:12344}
- NGINX_SHIBRESPONDER=${NGINX_SHIBRESPONDER:-shibboleth:12345}
- NGINX_TOMCAT
- NGINX_NODE
Expand All @@ -23,6 +24,7 @@ services:

shibboleth:
image: ghcr.io/ufal/dockerized-nginx-with-shibboleth/shibboleth:latest
restart: unless-stopped
build: ./shibboleth
volumes:
# config (+key material), logs
Expand All @@ -34,6 +36,7 @@ services:

syslog:
image: cr.fluentbit.io/fluent/fluent-bit:latest
restart: unless-stopped
volumes:
- ./fluent-bit/config.conf:/fluent-bit/etc/fluent-bit.conf
- logs:/logs
Expand Down

0 comments on commit 26a6b6c

Please sign in to comment.