-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
64 lines (64 loc) · 1.49 KB
/
docker-compose.yml
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
version: "3"
services:
octane:
depends_on:
- octane_mssql
- octane_es
ports:
- 8080:8080
- 8443:8443
- 5701
#volumes:
# - octane_conf:/opt/octane/conf
#- octane_log:/opt/octane/log
#- octane_repo:/opt/octane/repo
environment:
DISABLE_VALIDATOR_MEMORY: 'true'
env_file:
octane.env
image: lifecyclemanagement/octane
container_name: octane
octane_mssql:
image: mcr.microsoft.com/mssql/server:2017-latest
container_name: octane_mssql
#volumes:
# - /opt/octane/mssql:/var/opt/mssql
ports:
- 1433
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=OctaneIsTheBest1!
- MSSQL_PID=Express
octane_es:
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- http.host=0.0.0.0
- transport.host=0.0.0.0
- xpack.security.enabled=false
- xpack.watcher.enabled=false
- xpack.monitoring.enabled=false
- xpack.graph.enabled=false
- xpack.ml.enabled=false
- cluster.name=elasticsearch
- bootstrap.memory_lock=true
- discovery.type=single-node
#volumes:
# - /opt/octane/elasticsearch:/usr/share/elasticsearch/data
image: docker.elastic.co/elasticsearch/elasticsearch:7.16.2
container_name: octane_es
ports:
- 9300
- 9200:9200
cap_add:
- IPC_LOCK
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
#volumes:
# octane_conf:
#octane_log:
#octane_repo: