-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-development.yml
50 lines (50 loc) · 1.63 KB
/
docker-compose-development.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
# This docker-compose file defines the development environment
# Author: Manuel Bernal Llinares <[email protected]>
version: "3"
services:
resolver:
image: identifiersorg/cloud-ws-resolver:1.0.4
environment:
- WS_RESOLVER_CONFIG_REDIS_HOST=redis
- WS_RESOLVER_CONFIG_REDIS_PORT=6379
- WS_RESOLVER_CONFIG_RESOURCE_RECOMMENDER_HOST=recommender
- WS_RESOLVER_CONFIG_RESOURCE_RECOMMENDER_PORT=8083
- WS_RESOLVER_JVM_MEMORY_MAX=1024m
- WS_RESOLVER_CONFIG_APPLICATION_ACTIVE_PROFILE=development
ports:
- "8080:8080"
depends_on:
- redis
- recommender
redis:
image: redis:4.0.8-alpine
ports:
- "6379:6379"
recommender:
image: identifiersorg/cloud-ws-resource-recommender:1.1.1
environment:
- WS_RESOURCE_RECOMMENDER_JVM_MEMORY_MAX=1024m
ports:
- "8083:8083"
depends_on:
- link-checker
link-checker:
image: identifiersorg/cloud-ws-link-checker:1.1.3
environment:
- WS_LINK_CHECKER_CONFIG_REDIS_HOST=redis
- WS_LINK_CHECKER_CONFIG_BACKEND_SERVICE_RESOLVER_HOST=resolver
- WS_LINK_CHECKER_CONFIG_DAEMON_PERIODIC_LINK_CHECK_REQUESTER_ENABLED=false
ports:
- "8084:8084"
depends_on:
- redis
httpstatus:
image: identifiersorg/cloud-ws-httpstatus
ports:
- "8079:8079"
fakesmtp:
image: digiplant/fake-smtp
ports:
- "1025:25"
volumes:
- ./tmp/fakesmtp:/var/mail