forked from TheHive-Project/Docker-Templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
48 lines (44 loc) · 926 Bytes
/
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
37
38
39
40
41
42
43
44
45
46
47
48
version: '3'
services:
nginx:
container_name: nginx
hostname: nginx
image: nginx:1.19.5
ports:
- 80:80
- 443:443
networks:
- proxy
volumes:
- ./vol/nginx:/etc/nginx/conf.d
- ./vol/ssl:/etc/ssl
elasticsearch:
container_name: elasticsearch
image: 'elasticsearch:6.8.8'
environment:
- http.host=0.0.0.0
- discovery.type=single-node
- script.allowed_types=inline
- thread_pool.search.queue_size=100000
- thread_pool.write.queue_size=10000
ulimits:
nofile:
soft: 65536
hard: 65536
networks:
- backend
thehive:
container_name: thehive
image: thehiveproject/thehive:3.4.4-1
depends_on:
- elasticsearch
networks:
- proxy
- backend
command:
--no-config-cortex
--es-uri http://elasticsearch:9200
networks:
backend:
proxy:
external: true