mirror of
https://github.com/openMF/web-app.git
synced 2026-02-06 17:46:48 +00:00
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
version: '3.5'
|
|
|
|
services:
|
|
mifosx-web-app:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- BUILD_ENVIRONMENT_OPTIONS=--configuration production
|
|
- BUILDER_IMAGE=node:20-alpine
|
|
- NGINX_IMAGE=nginx:1.19.3
|
|
- NPM_REGISTRY_URL=https://registry.npmjs.org/
|
|
- PUPPETEER_DOWNLOAD_HOST_ARG=https://storage.googleapis.com
|
|
- PUPPETEER_CHROMIUM_REVISION_ARG=1011831
|
|
ports:
|
|
- '4200:80'
|
|
environment:
|
|
- FINERACT_API_URLS=https://sandbox.mifos.community,https://demo.mifos.community,https://localhost:8443
|
|
- FINERACT_API_URL=https://localhost:8443
|
|
- FINERACT_API_PROVIDER=/fineract-provider/api
|
|
- FINERACT_API_VERSION=/v1
|
|
- FINERACT_PLATFORM_TENANT_IDENTIFIER=default
|
|
- MIFOS_DEFAULT_LANGUAGE=en-US
|
|
- MIFOS_SUPPORTED_LANGUAGES=cs-CS,de-DE,en-US,es-MX,es-CL,fr-FR,it-IT,ko-KO,lt-LT,lv-LV,ne-NE,pt-PT,sw-SW
|
|
- MIFOS_SESSION_IDLE_TIMEOUT=300000
|
|
- MIFOS_PRELOAD_CLIENTS=true
|
|
- MIFOS_DEFAULT_CHAR_DELIMITER=,
|
|
# Production mode - set to true for minimal hero with only branding
|
|
- MIFOS_PRODUCTION_MODE=false
|