mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-06-15 13:09:59 +00:00
Added _ hapi server. Added goFSH added FHIR operations UI and FHIR based resful Client Logfiles for seperate applications for persistance and log rollover to do: advanced FSH commands Error reporting hooks
19 lines
481 B
YAML
19 lines
481 B
YAML
version: '3.8'
|
|
services:
|
|
fhirflare:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5000:5000"
|
|
- "8080:8080"
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
- ./static/uploads:/app/static/uploads
|
|
- ./hapi-fhir-jpaserver/target/h2-data:/app/h2-data
|
|
- ./logs:/app/logs
|
|
environment:
|
|
- FLASK_APP=app.py
|
|
- FLASK_ENV=development
|
|
- NODE_PATH=/usr/lib/node_modules
|
|
command: supervisord -c /etc/supervisord.conf |