-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
58 lines (58 loc) · 2.18 KB
/
docker-compose.yaml
File metadata and controls
58 lines (58 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
volumes:
postgres_data: {}
services:
postgres:
image: docker.io/library/postgres:18
volumes:
- postgres_data:/var/lib/postgresql/18/docker:delegated
command:
- postgres
- -c
- shared_preload_libraries=pg_stat_statements
environment:
POSTGRES_USER: aidbox
POSTGRES_PORT: '5432'
POSTGRES_DB: aidbox
POSTGRES_PASSWORD: dUlxYF5hJp
aidbox:
image: docker.io/healthsamurai/aidboxone:edge
pull_policy: always
depends_on:
- postgres
ports:
- 8080:8080
environment:
BOX_ADMIN_PASSWORD: 7PfrTz0cDj
BOX_BOOTSTRAP_FHIR_PACKAGES: hl7.fhir.r4.core#4.0.1
BOX_COMPATIBILITY_VALIDATION_JSON__SCHEMA_REGEX: '#{:fhir-datetime}'
BOX_DB_DATABASE: aidbox
BOX_DB_HOST: postgres
BOX_DB_PASSWORD: dUlxYF5hJp
BOX_DB_PORT: '5432'
BOX_DB_USER: aidbox
BOX_FHIR_BUNDLE_EXECUTION_VALIDATION_MODE: limited
BOX_FHIR_COMPLIANT_MODE: 'true'
BOX_FHIR_CORRECT_AIDBOX_FORMAT: 'true'
BOX_FHIR_CREATEDAT_URL: https://aidbox.app/ex/createdAt
BOX_FHIR_SCHEMA_VALIDATION: 'true'
BOX_FHIR_SEARCH_AUTHORIZE_INLINE_REQUESTS: 'true'
BOX_FHIR_SEARCH_CHAIN_SUBSELECT: 'true'
BOX_FHIR_SEARCH_COMPARISONS: 'true'
BOX_FHIR_TERMINOLOGY_ENGINE: hybrid
BOX_FHIR_TERMINOLOGY_ENGINE_HYBRID_EXTERNAL_TX_SERVER: https://tx.health-samurai.io/fhir
BOX_FHIR_TERMINOLOGY_SERVICE_BASE_URL: https://tx.health-samurai.io/fhir
BOX_LICENSE: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6Im5vdC1mb3VuZCIsImtleSI6Im9ubGluZS0yMDIyMDUyNC0xNDM2NDcifQ.QbmO04sb9N_gSkFnO76y2ouTxIRvoJx6WOLKi3mVPCRBGLWDSAxZjGO1jXoVMwUfqCJUKrONbwXX0zIuFhzKx01DbJvZj44EN_i6R-t6X44i_QGB5reOqyDj2oYrtab-uBieLaeh165K0ExkS7-iPKItcsGoC9n0yOuRmKSUGIg
BOX_MODULE_SDC_STRICT_ACCESS_CONTROL: 'true'
BOX_ROOT_CLIENT_SECRET: <SECRET>
BOX_SEARCH_INCLUDE_CONFORMANT: 'true'
BOX_SECURITY_AUDIT_LOG_ENABLED: 'true'
BOX_SECURITY_DEV_MODE: 'true'
BOX_SETTINGS_MODE: read-write
BOX_WEB_BASE_URL: http://localhost:8080
BOX_WEB_PORT: 8080
healthcheck:
test: curl -f http://localhost:8080/health || exit 1
interval: 5s
timeout: 5s
retries: 90
start_period: 30s