forked from OpenCTI-Platform/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.dev.yml
58 lines (55 loc) · 1.46 KB
/
docker-compose.dev.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
version: '3.8'
services:
opencti-dev-redis:
container_name: opencti-dev-redis
image: redis:7.2.4
restart: unless-stopped
ports:
- "6379:6379"
opencti-dev-elasticsearch:
container_name: opencti-dev-elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:8.13.4
environment:
- discovery.type=single-node
- xpack.ml.enabled=false
- xpack.security.enabled=false
- "ES_JAVA_OPTS=-Xms1G -Xmx1G"
restart: unless-stopped
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- "9200:9200"
- "9300:9300"
opencti-dev-kibana:
container_name: opencti-dev-kibana
image: docker.elastic.co/kibana/kibana:8.13.4
environment:
- ELASTICSEARCH_HOSTS=http://opencti-dev-elasticsearch:9200
restart: unless-stopped
ports:
- "5601:5601"
depends_on:
- opencti-dev-elasticsearch
opencti-dev-minio:
container_name: opencti-dev-minio
image: minio/minio:RELEASE.2024-01-16T16-07-38Z
ports:
- "9000:9000"
- "9001:9001"
environment:
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
command: server /data --console-address ":9001"
restart: unless-stopped
opencti-dev-rabbitmq:
container_name: opencti-dev-rabbitmq
image: rabbitmq:3.13-management
restart: unless-stopped
ports:
- "5672:5672"
- "15672:15672"