-
Notifications
You must be signed in to change notification settings - Fork 458
/
Copy pathcompose.yml
80 lines (76 loc) · 2.08 KB
/
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
services:
neo4j:
container_name: neo4j
image: neo4j:4.4.27
# Using volumes slows down the container.
#volumes:
# - ./neo4j/data:/data
# - ./neo4j/logs:/logs
# - ./neo4j/conf:/conf
# Set when sync container and local time
# - /etc/localtime:/etc/localtime:ro
ports:
- "7474:7474"
- "7687:7687"
environment:
- NEO4J_dbms_default__database=neo4j
- NEO4J_dbms_connector_bolt_listen__address=0.0.0.0:7687
- NEO4J_dbms_connector_http_listen__address=0.0.0.0:7474
# Performance tuning for JVM neo4j
# See more details: https://neo4j.com/developer/guide-performance-tuning/
# - NEO4J_dbms_memory_heap_max__size=4G
# - NEO4J_dbms_memory_heap_initial__size=2G
# - NEO4j_dbms_memory_pagecache_size=20G
# set default neo4j password
- NEO4J_AUTH=neo4j/password
networks:
- neo4j-network
logontracer:
container_name: logontracer
build: ./LogonTracer/build
image: logontracer:latest
depends_on:
- neo4j
#volumes:
# Set when sync container and local time
# - /etc/localtime:/etc/localtime:ro
ports:
- "8080:8080"
environment:
- LTHOSTNAME=localhost
networks:
- neo4j-network
elasticsearch:
container_name: elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.9.0
volumes:
- ./elasticsearch/data:/usr/share/elasticsearch/data
- ./elasticsearch/config/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
environment:
- bootstrap.memory_lock=true
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
ports:
- 9200:9200
expose:
- 9300
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
networks:
- neo4j-network
kibana:
container_name: kibana
image: docker.elastic.co/kibana/kibana:7.9.0
volumes:
- ./kibana/config/kibana.yml:/usr/share/kibana/config/kibana.yml
ports:
- 5601:5601
networks:
- neo4j-network
networks:
neo4j-network:
external: true