-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
82 lines (72 loc) · 1.96 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# clowder server
clowder:
image: clowder/clowder:develop
# environment:
# CLOWDER_ADMIN: "[email protected]"
# TOOLMANAGER_URI: "http://192.168.99.100:8080"
# SMTP_HOST: smtp.ncsa.illinois.edu
ports:
- "9000:9000"
links:
- mongo
- rabbitmq
- elasticsearch
volumes:
#exposes the custom conf directory
# - sead-custom:/home/clowder/clowder/custom:Z
#exposes the databytes directory for use wuth the DiskByteStore (path must match in custom.conf)
# - sead-data:/home/clowder/clowder/databytes:Z
#exposes logs directory
# - sead-logs:/home/clowder/clowder/logs:Z
# extractors
filedigest:
image: clowder/extractors-digest
links:
- rabbitmq
audiopreview:
image: clowder/extractors-audio-preview
links:
- rabbitmq
imagepreview:
image: clowder/extractors-image-preview
links:
- rabbitmq
imagemetadata:
image: clowder/extractors-image-metadata
links:
- rabbitmq
pdfpreview:
image: clowder/extractors-pdf-preview
links:
- rabbitmq
videopreview:
image: clowder/extractors-video-preview
links:
- rabbitmq
# mongo database used to store metadata/data
mongo:
image: mongo:latest
# no need to expose ports unless you want direct access to the db and are OK with the security risk
# ports:
# - "27017:27017"
# volumes:
# - clowder/mongo:/data/db:Z
# rabbitmq to connect to extractors
rabbitmq:
image: rabbitmq:management
# no need to expose ports unless you want direct access to the bus and are OK with the security risk
# ports:
# - "5672:5672"
# - "15672:15672"
# volumes:
# - clowder/rabbitmq:/var/lib/rabbitmq:Z
# elasticsearch to allow indexing
elasticsearch:
image: elasticsearch:2
command: elasticsearch -Des.cluster.name="clowder"
# no need to expose ports unless you want direct access to the search engine and are OK with the security risk
# ports:
# - "9200:9200"
# - "9300:9300"
# volumes:
# - ${PWD}/esdata:/usr/share/elasticsearch/data:Z