This commit is contained in:
Joshua Hare 2025-05-13 14:03:29 +10:00
parent f150e7baaf
commit 11e8569c56
3 changed files with 6 additions and 6 deletions

View File

@ -157,8 +157,8 @@ echo Updating docker-compose.yml with APP_MODE=%APP_MODE%...
echo - FLASK_ENV=development
echo - NODE_PATH=/usr/lib/node_modules
echo - APP_MODE=%APP_MODE%
echo - APP_BASE_URL=https://localhost:5000
echo - HAPI_FHIR_URL=https://localhost:8080/fhir
echo - APP_BASE_URL=http://localhost:5000
echo - HAPI_FHIR_URL=http://localhost:8080/fhir
echo command: supervisord -c /etc/supervisord.conf
) > docker-compose.yml.tmp

View File

@ -17,6 +17,6 @@ services:
- FLASK_ENV=development
- NODE_PATH=/usr/lib/node_modules
- APP_MODE=lite
- APP_BASE_URL=https://localhost:5000
- HAPI_FHIR_URL=https://localhost:8080/fhir
- APP_BASE_URL=http://localhost:5000
- HAPI_FHIR_URL=http://localhost:8080/fhir
command: supervisord -c /etc/supervisord.conf

View File

@ -195,8 +195,8 @@ services:
- FLASK_ENV=development
- NODE_PATH=/usr/lib/node_modules
- APP_MODE=${APP_MODE}
- APP_BASE_URL=https://localhost:5000
- HAPI_FHIR_URL=https://localhost:8080/fhir
- APP_BASE_URL=http://localhost:5000
- HAPI_FHIR_URL=http://localhost:8080/fhir
command: supervisord -c /etc/supervisord.conf
EOF