-
Notifications
You must be signed in to change notification settings - Fork 3
/
docker-compose.yml
36 lines (34 loc) · 1.01 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
version: "3"
services:
grafana:
image: grafana/grafana:8.3.3
container_name: grafana
ports:
- "3000:3000"
influxdb:
image: influxdb:2.1.1
container_name: influxdb
ports:
- "8086:8086"
- "8088:8088"
environment:
- DOCKER_INFLUXDB_INIT_MODE=setup
- DOCKER_INFLUXDB_INIT_USERNAME=admin
- DOCKER_INFLUXDB_INIT_PASSWORD=SecureRootPassword!?
- DOCKER_INFLUXDB_INIT_ORG=testRetention
- DOCKER_INFLUXDB_INIT_BUCKET=testSeries
- DOCKER_INFLUXDB_INIT_ADMIN_TOKEN=12bdc4164c2e8141 # random valid token I generated once
neo4j:
image: neo4j:4.1-community
volumes:
- ./neo4j/data:/data
- ./neo4j/plugins:/plugins
environment:
- NEO4J_apoc_export_file_enabled=true
- NEO4J_apoc_import_file_enabled=true
- NEO4J_apoc_import_file_use__neo4j__config=true
- NEO4JLABS_PLUGINS=["apoc"]
- NEO4J_AUTH=neo4j/password # taken from TestNeo4J.java... dont blame me
ports:
- "7474:7474"
- "7687:7687"