From 35751e3cf89abf69f11dff7f9a3396d8068becc8 Mon Sep 17 00:00:00 2001 From: Markus Krogh Date: Fri, 29 Sep 2017 17:42:03 +0200 Subject: Use ENV for persistentiId, logging --- compose-prod.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 compose-prod.yml (limited to 'compose-prod.yml') diff --git a/compose-prod.yml b/compose-prod.yml new file mode 100644 index 0000000..b3094d2 --- /dev/null +++ b/compose-prod.yml @@ -0,0 +1,22 @@ +version: '3' +services: + shibboleth-docker: + build: ./idp + environment: + - JAVA_OPTIONS=-Xmx1G + - IDP_HOSTNAME=idp.nordu.net + - IDP_SCOPE=nordu.net + - IDP_DEBUG=true + env_file: ./data/production/env + volumes: + - ./data/production/idp-data:/opt/data + nginx: + image: nginx + volumes: + - ./data/production/certs:/opt/certs + - ./data/production/nginx:/etc/nginx/conf.d + links: + - shibboleth-docker + ports: + - '80:80' + - '443:443' -- cgit v1.1