forked from hoover/docker-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
52 lines (45 loc) · 1.31 KB
/
docker-compose.yml
File metadata and controls
52 lines (45 loc) · 1.31 KB
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
version: "3.3"
volumes:
snoop-stats-es-data: {}
services:
snoop-rabbitmq:
image: rabbitmq:3.7.3
snoop-tika:
image: logicalspark/docker-tikaserver
search-pg:
image: postgres:9.6
volumes:
- ./volumes/search-pg/data:/var/lib/postgresql/data
environment:
POSTGRES_USER: search
POSTGRES_DATABASE: search
search-es:
image: docker.elastic.co/elasticsearch/elasticsearch:6.2.4
volumes:
- ./volumes/search-es/data:/usr/share/elasticsearch/data
- ./volumes/search-es-snapshots:/opt/hoover/es-snapshots
environment:
discovery.type: single-node
path.repo: /opt/hoover/es-snapshots
ui:
image: liquidinvestigations/hoover-ui
volumes:
- ./ui/build:/opt/hoover/ui/build
search:
image: liquidinvestigations/hoover-search
volumes:
- ./ui/build:/opt/hoover/ui/build
- ./volumes/metrics:/opt/hoover/metrics
- ./settings/search-settings.py:/opt/hoover/search/hoover/site/settings/local.py
- ./settings/search-settings-testing.py:/opt/hoover/search/hoover/site/settings/testing_local.py
depends_on:
- search-pg
- search-es
- ui
env_file:
- ./settings/search.env
ports:
- "45024:80"
environment:
WAIT_HOSTS: search-es:9200, search-pg:5432
WAIT_HOSTS_TIMEOUT: 60