-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathcompose.yaml
More file actions
39 lines (39 loc) · 1.35 KB
/
compose.yaml
File metadata and controls
39 lines (39 loc) · 1.35 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
services:
coldfusion:
container_name: coldfusion
image: adobecoldfusion/coldfusion2021:2021.0.4
ports:
- 8500:8500
volumes:
- ./app:/app
#environment:
# - JAVA_TOOL_OPTIONS="-Djavax.net.debug=ssl:session -Dsun.net.client.defaultReadTimeout=300000 -Dsun.net.client.defaultConnectTimeout=300000"
#
env_file:
- coldfusion.env
healthcheck:
test: curl -f http://localhost:8500/
interval: 1m
timeout: 3s
pmt:
# beware of need for host to have vm.max_map_count >= 262144
# otherwise, will see error with "docker compose logs pmt", as in:
# max virtual memory areas vm.max_map_count [65530] is too low, increase to at least [262144]
# to solve this in docker desktop on Windows, use wsl -d docker-desktop sysctl -w vm.max_map_count=262144
container_name: pmt
image: adobecoldfusion/pmt2021:2021.0.4
depends_on:
- coldfusion
ports:
- 9101:9101
- 9200:9200
# command: bash -c "env node.store.allow_mmap=false"
# default username and password are admin/admin
env_file:
- pmt.env
#volumes:
#- ./datastorelogs/:/opt/coldfusionperformancemonitoringtoolset/datastore/logs/
healthcheck:
test: curl -f http://localhost:9101/
interval: 1m
timeout: 3s