From 952b659b52b6f5d7bcc9c346cb9a6e6aed1e9d96 Mon Sep 17 00:00:00 2001 From: pedro Date: Wed, 7 Feb 2024 12:28:59 +0100 Subject: [PATCH] pilot xo9b: enable test users and specific admins - deployment env var is going to disappear because is no longer relevant (I will do it in the next commit) --- docker-compose__pilot-xo9b.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docker-compose__pilot-xo9b.yml b/docker-compose__pilot-xo9b.yml index bfe252d..8865c53 100644 --- a/docker-compose__pilot-xo9b.yml +++ b/docker-compose__pilot-xo9b.yml @@ -5,7 +5,11 @@ services: init: true image: dkr-dsg.ac.upc.edu/trustchain-oc1-orchestral/idhub:latest environment: - - DEPLOYMENT=${IDHUB_DEPLOYMENT} + - ADMIN_EMAIL=${IDHUB_PILOT_TEST__ADMIN_EMAIL} + - CREATE_TEST_USERS=true + # when enabling this pilot for its end users + # ADMIN_EMAIL=IDHUB_PILOT_XO9B_IDHUB1__ADMIN_EMAIL + # TODO destroy CREATE_TEST_USERS=true - SECRET_KEY=${IDHUB_SECRET_KEY:-publicsecretisnotsecureVtmKBfxpVV47PpBCF2Nzz2H6qnbd} - ALLOWED_HOSTS=${IDHUB_ALLOWED_HOSTS:-*} - STATIC_ROOT=${IDHUB_STATIC_ROOT:-/static/} @@ -37,7 +41,11 @@ services: init: true image: dkr-dsg.ac.upc.edu/trustchain-oc1-orchestral/idhub:latest environment: - - DEPLOYMENT=${IDHUB_DEPLOYMENT} + - ADMIN_EMAIL=${IDHUB_PILOT_TEST__ADMIN_EMAIL} + - CREATE_TEST_USERS=true + # when enabling this pilot for its end users + # ADMIN_EMAIL=IDHUB_PILOT_XO9B_IDHUB2__ADMIN_EMAIL + # TODO destroy CREATE_TEST_USERS=true - SECRET_KEY=${IDHUB_SECRET_KEY:-publicsecretisnotsecureVtmKBfxpVV47PpBCF2Nzz2H6qnbd} - ALLOWED_HOSTS=${IDHUB_ALLOWED_HOSTS:-*} - STATIC_ROOT=${IDHUB_STATIC_ROOT:-/static/}