mirror of
https://github.com/Sudo-JHare/FHIRFLARE-IG-Toolkit.git
synced 2025-11-05 13:35:15 +00:00
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
services:
|
|
fhirflare:
|
|
image: ghcr.io/jgsuess/fhirflare-ig-toolkit:latest
|
|
ports:
|
|
- "5000:5000"
|
|
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://fhir:8080/fhir
|
|
command: supervisord -c /etc/supervisord.conf
|
|
|
|
fhir:
|
|
container_name: hapi
|
|
image: "hapiproject/hapi:v8.2.0-1"
|
|
ports:
|
|
- "8080:8080"
|
|
configs:
|
|
- source: hapi
|
|
target: /app/config/application.yaml
|
|
depends_on:
|
|
- db
|
|
|
|
db:
|
|
image: "postgres:17.2-bookworm"
|
|
restart: always
|
|
environment:
|
|
POSTGRES_PASSWORD: admin
|
|
POSTGRES_USER: admin
|
|
POSTGRES_DB: hapi
|
|
volumes:
|
|
- ./hapi.postgress.data:/var/lib/postgresql/data
|
|
|
|
configs:
|
|
hapi:
|
|
file: ./application.yaml
|