-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose-development.yml
57 lines (57 loc) · 2.02 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
51
52
53
54
55
56
57
# Development environment definition
# Author: Manuel Bernal Llinares
version: "3.5"
services:
postgresql:
image: postgres
environment:
- POSTGRES_DB=devdatabase
- POSTGRES_USER=devusername
- POSTGRES_PASSWORD=devpassword
ports:
- "5430:5432"
volumes:
- "../db/registry:/docker-entrypoint-initdb.d"
redis:
image: redis:4.0.8-alpine
ports:
- "6379:6379"
hqregistry:
image: identifiersorg/cloud-hq-ws-registry
environment:
- HQ_WS_REGISTRY_CONFIG_JDBC_URL=jdbc:postgresql://postgresql:5432/devdatabase
- HQ_WS_REGISTRY_CONFIG_RDBMS_USERNAME=devusername
- HQ_WS_REGISTRY_CONFIG_RDBMS_PASSWORD=devpassword
- HQ_WS_REGISTRY_CONFIG_BACKEND_SERVICE_MIRID_CONTROLLER_HOST=hqmiridcontroller
- HQ_WS_REGISTRY_CONFIG_BACKEND_SERVICE_MIRID_CONTROLLER_PORT=8181
- HQ_WS_REGISTRY_CONFIG_APPLICATION_ACTIVE_PROFILE=authdisabled
- HQ_WS_REGISTRY_CONFIG_EMAIL_HOST=fakesmtp
- HQ_WS_REGISTRY_CONFIG_EMAIL_PORT=25
ports:
- "8180:8180"
depends_on:
- postgresql
- hqmiridcontroller
- fakesmtp
hqmiridcontroller:
image: identifiersorg/cloud-hq-ws-mirid-controller
environment:
- HQ_WS_MIRID_CONTROLLER_CONFIG_JDBC_URL=jdbc:postgresql://postgresql:5432/devdatabase
- HQ_WS_MIRID_CONTROLLER_CONFIG_RDBMS_USERNAME=devusername
- HQ_WS_MIRID_CONTROLLER_CONFIG_RDBMS_PASSWORD:devpassword
- HQ_WS_MIRID_CONTROLLER_CONFIG_REDIS_HOST=redis
- HQ_WS_MIRID_CONTROLLER_CONFIG_APPLICATION_ACTIVE_PROFILE=authdisabled
ports:
- "8181:8181"
depends_on:
- redis
- postgresql
fakesmtp:
image: digiplant/fake-smtp
ports:
- "1025:25"
volumes:
- ./tmp/fakesmtp:/var/mail
networks:
default:
name: hqwebnet