forked from OpenCTI-Platform/docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-dev.yml
47 lines (47 loc) · 1.14 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
version: '3'
services:
opencti-dev-redis:
container_name: opencti-dev-redis
image: redis:6.2.3
restart: always
ports:
- 6379:6379
opencti-dev-elasticsearch:
container_name: opencti-dev-elasticsearch
image: docker.elastic.co/elasticsearch/elasticsearch:7.12.1
environment:
- discovery.type=single-node
- "ES_JAVA_OPTS=-Xms4G -Xmx4G"
restart: always
ulimits:
memlock:
soft: -1
hard: -1
nofile:
soft: 65536
hard: 65536
ports:
- 9200:9200
- 9300:9300
opencti-dev-minio:
container_name: opencti-dev-minio
image: minio/minio:RELEASE.2021-04-22T15-44-28Z
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: ChangeMeAccess
MINIO_SECRET_KEY: ChangeMeKey
command: server /data
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
interval: 30s
timeout: 20s
retries: 3
restart: always
opencti-dev-rabbitmq:
container_name: opencti-dev-rabbitmq
image: rabbitmq:3.8-management
restart: always
ports:
- 5672:5672
- 15672:15672