mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-06-14 12:10:03 +00:00
23 lines
687 B
YAML
23 lines
687 B
YAML
version: '3.8'
|
|
services:
|
|
fhirflare:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "5000:5000"
|
|
- "8080:8080" # Keep port exposed, even if Tomcat isn't running useful stuff in Lite
|
|
volumes:
|
|
- ./instance:/app/instance
|
|
- ./static/uploads:/app/static/uploads
|
|
- ./instance/hapi-h2-data/:/app/h2-data # Keep volume mounts consistent
|
|
- ./logs:/app/logs
|
|
environment:
|
|
- FLASK_APP=app.py
|
|
- FLASK_ENV=development
|
|
- NODE_PATH=/usr/lib/node_modules
|
|
- APP_MODE=lite
|
|
- APP_BASE_URL=http://localhost:5000
|
|
- HAPI_FHIR_URL=http://localhost:8080/fhir
|
|
command: supervisord -c /etc/supervisord.conf
|