-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompose.yaml
47 lines (45 loc) · 1.32 KB
/
compose.yaml
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
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
networks:
neo4j-network:
external: true