mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2026-08-18 17:43:20 +00:00
V4.3 Advanced Validation added full gamut of options and configuration for fully fleshed out validation
22 lines
574 B
YAML
22 lines
574 B
YAML
version: '3.8'
|
|
services:
|
|
fhirflare:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile.lite
|
|
ports:
|
|
- "5000:5000"
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
- ./static/uploads:/app/static/uploads
|
|
- ./logs:/app/logs
|
|
environment:
|
|
- FLASK_APP=app.py
|
|
- FLASK_ENV=development
|
|
- NODE_PATH=/usr/lib/node_modules
|
|
- APP_MODE=standalone
|
|
- APP_BASE_URL=http://localhost:5000
|
|
- HAPI_FHIR_URL=https://smile.sparked-fhir.com/aucore/fhir/DEFAULT/
|
|
command: supervisord -c /etc/supervisord.conf
|