-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
80 lines (73 loc) · 1.85 KB
/
Copy pathcompose.yml
File metadata and controls
80 lines (73 loc) · 1.85 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# OpenEMR CLI Import Codes - Development Environment
#
# Extends OpenEMR's development-easy services with overrides:
# - Random ports bound to 127.0.0.1 (avoid conflicts; never expose dev DB to LAN)
# - CLI tool mounted into OpenEMR container
name: oce-cli-import-codes
services:
couchdb:
ports: !override
- target: 5984
host_ip: 127.0.0.1
protocol: tcp
mode: host
- target: 6984
host_ip: 127.0.0.1
protocol: tcp
mode: host
extends:
file: vendor/openemr/openemr/docker/development-easy/docker-compose.yml
service: couchdb
mysql:
ports: !override
- target: 3306
host_ip: 127.0.0.1
protocol: tcp
mode: host
extends:
file: vendor/openemr/openemr/docker/development-easy/docker-compose.yml
service: mysql
openemr:
volumes:
- .:/var/www/localhost/htdocs/openemr/oce-cli-import-codes:rw
ports: !override
- target: 80
host_ip: 127.0.0.1
protocol: tcp
mode: host
- target: 443
host_ip: 127.0.0.1
protocol: tcp
mode: host
healthcheck:
test: ["CMD", "curl", "-fsk", "https://localhost:443/"]
interval: 10s
timeout: 5s
retries: 3
start_period: 3m
extends:
file: vendor/openemr/openemr/docker/development-easy/docker-compose.yml
service: openemr
openldap:
extends:
file: vendor/openemr/openemr/docker/development-easy/docker-compose.yml
service: openldap
phpmyadmin:
ports: !override
- target: 80
host_ip: 127.0.0.1
protocol: tcp
mode: host
extends:
file: vendor/openemr/openemr/docker/development-easy/docker-compose.yml
service: phpmyadmin
volumes:
databasevolume: {}
assetvolume: {}
themevolume: {}
sitesvolume: {}
nodemodules: {}
vendordir: {}
ccdanodemodules: {}
logvolume: {}
couchdbvolume: {}