- extract, isolate and package it in a completely independent Python module, versioned and in a way that allows releases on PyPI.org - fixed error in placeholder for secondary school (data registry defaults) - added restriction in pytest version to install - expected number of new cases fix - data registry update (schema v2.1.1) - github update - deprecate ExpertApplication and CO2Application - changes to reflect schema update 2.0.2 - version update - Fixed error with f_inf (short-range) - new folder layout - Conditional probability data update - General fixes - Fitting results in L/S/person - CO2 fitting algorithm refinement
47 lines
1.1 KiB
YAML
47 lines
1.1 KiB
YAML
version: "3.8"
|
|
services:
|
|
calculator-app:
|
|
image: calculator-app
|
|
environment:
|
|
- COOKIE_SECRET
|
|
- APP_NAME=calculator-app
|
|
- APPLICATION_ROOT=/
|
|
- CAIMIRA_CALCULATOR_PREFIX=/calculator-cern
|
|
- CAIMIRA_THEME=ui/apps/templates/cern
|
|
- DATA_SERVICE_ENABLED=0
|
|
- CAIMIRA_PROFILER_ENABLED=0
|
|
user: ${CURRENT_UID}
|
|
|
|
calculator-open-app:
|
|
image: calculator-app
|
|
environment:
|
|
- COOKIE_SECRET
|
|
- APP_NAME=calculator-app
|
|
- APPLICATION_ROOT=/
|
|
- CAIMIRA_CALCULATOR_PREFIX=/calculator-open
|
|
- DATA_SERVICE_ENABLED=0
|
|
- CAIMIRA_PROFILER_ENABLED=0
|
|
user: ${CURRENT_UID}
|
|
|
|
auth-service:
|
|
image: auth-service
|
|
environment:
|
|
- COOKIE_SECRET
|
|
- OIDC_SERVER
|
|
- OIDC_REALM
|
|
- CLIENT_ID
|
|
- CLIENT_SECRET
|
|
user: ${CURRENT_UID}
|
|
|
|
caimira-router:
|
|
image: caimira-nginx-app
|
|
ports:
|
|
- "8080:8080"
|
|
depends_on:
|
|
calculator-app:
|
|
condition: service_started
|
|
calculator-open-app:
|
|
condition: service_started
|
|
auth-service:
|
|
condition: service_started
|
|
user: ${CURRENT_UID}
|