-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathdocker-compose.ui.yml
More file actions
75 lines (71 loc) · 2.09 KB
/
docker-compose.ui.yml
File metadata and controls
75 lines (71 loc) · 2.09 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
services:
haprouter:
image: ${DOCKER_REG_PRIVATE}/orcid/registry/orcid-haprouter:${TAG:-0.0.1}
build:
context: .
dockerfile: orcid-haprouter/Dockerfile
restart: ${RESTART:-no}
env_file:
- orcid-haprouter/default.env
- orcid-haprouter/deployment.env
ports:
- 0.0.0.0:678:1936 # stats
- 0.0.0.0:7983:7983 # solr read
- 0.0.0.0:6983:6983 # solr write
- 0.0.0.0:7432:7432 # postgres read
- 0.0.0.0:6432:6432 # postgres write
networks:
app:
ui_frontend:
image: ${DOCKER_REG_PRIVATE}/orcid/registry/orcid-web-frontend-${FRONTEND_LABEL:-qa}:${FRONTEND_TAG:-0.0.1}
build:
context: .
dockerfile: 'FIXME: must build in the orcid-angular project first Dockerfile.build'
restart: ${RESTART:-no}
ports:
- 0.0.0.0:13106:80
networks:
app:
ui_proxy:
image: ${DOCKER_REG_PRIVATE}/orcid/registry/orcid-web-proxy:${TAG:-0.0.1}
build:
context: .
dockerfile: orcid-web-proxy/Dockerfile
restart: ${RESTART:-no}
ports:
- 0.0.0.0:13107:80
- 0.0.0.0:13108:443
volumes:
- ./certs/dhparam.pem:/etc/nginx/certs/dhparam.pem:ro
- ${SSL_CERTIFICATE:-./certs/docker_dev.pem}:/etc/nginx/certs/docker.pem:ro
- ${SSL_CERTIFICATE_KEY:-./certs/docker_dev-key.pem}:/etc/nginx/certs/docker-key.pem:ro
networks:
app:
ui:
image: ${DOCKER_REG_PRIVATE}/orcid/registry/orcid-web:${TAG:-0.0.1}
build:
cache_from:
- orcid/registry-dependencies:${TAG:-0.0.1}
context: .
dockerfile: orcid-web/Dockerfile
args:
tag_numeric: ${TAG:-0.0.1}
restart: ${RESTART:-no}
env_file:
- default.env
- properties/default.orcid_core.env
- properties/default.misc.env
- properties/default.frontend.env
- properties/default.persistence.env
- orcid-web/default.env
- orcid-web/deployment.env
- ${DOCKER_DEV_ENV_FILE:-empty.env}
ports:
- 0.0.0.0:13100:8080
networks:
app:
volumes:
- /opt/docker/logs/reg-ui:/usr/local/tomcat/logs
networks:
app:
driver: bridge