-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
105 lines (97 loc) · 3.16 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
version: '3.4'
services:
alfresco-community-erecruitment-acs:
image: consiglionazionalericerche/alfresco-community-erecruitment:7.0.1
ports:
- 9080:8080
environment:
JAVA_TOOL_OPTIONS: "-Dencryption.keystore.type=JCEKS -Dencryption.cipherAlgorithm=AES/CBC/PKCS5Padding -Dencryption.keyAlgorithm=AES -Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore -Dmetadata-keystore.password=mp6yc0UD9e -Dmetadata-keystore.aliases=metadata -Dmetadata-keystore.metadata.password=oKIWzVdEdA -Dmetadata-keystore.metadata.algorithm=AES"
JAVA_OPTS: '-Xmx2g'
LANG: en_US.UTF-8
LANGUAGE: en_US:en
LC_ALL: en_US.UTF-8
volumes:
- ./alfresco-global.properties:/usr/local/tomcat/shared/classes/alfresco-global.properties
- ./alf_data:/usr/local/tomcat/alf_data
depends_on:
- alfresco-community-erecruitment-postgres
links:
- activemq:activemq
alfresco-community-erecruitment-postgres:
image: postgres:13.2
environment:
POSTGRES_DB: alfresco
POSTGRES_USER: alfresco
POSTGRES_PASSWORD: alfresco
command: postgres -c max_connections=300 -c log_min_messages=LOG
volumes:
- ./pgdata:/var/lib/postgresql/data/
expose:
- "5432"
alfresco-search-services:
image: alfresco/alfresco-search-services:1.2.0
environment:
- '-Xmx1g'
- SOLR_ALFRESCO_HOST=alfresco-community-erecruitment-acs
- SOLR_ALFRESCO_PORT=8080
- SOLR_SOLR_HOST=alfresco-community-erecruitment-acs
- SOLR_SOLR_PORT=8983
- SOLR_CREATE_ALFRESCO_DEFAULTS=alfresco,archive
expose:
- "8983"
activemq:
image: alfresco/alfresco-activemq:5.16.1
ports:
- 8161:8161 # Web Console
- 5672:5672 # AMQP
- 61616:61616 # OpenWire
- 61613:61613 # STOMP
spid-testenv2:
image: italia/spid-testenv2
ports:
- 8088:8088
volumes:
- ./spid-conf:/app/conf
labels:
- SERVICE_NAME=spid-testenv2
helpdesk:
image: consiglionazionalericerche/oil:latest
environment:
- TZ=Europe/Rome
ports:
- 9081:8080
links:
- pgoil:pgoil
volumes:
- ./standalone-full.xml:/opt/jboss/wildfly/standalone/configuration/standalone-full.xml
pgoil:
image: postgres:9.2
environment:
- POSTGRES_PASSWORD=helpdeskpw
- POSTGRES_USER=helpdesk
- POSTGRES_DB=helpdeskdb
command: postgres -c max_connections=300 -c log_min_messages=LOG
volumes:
- ./pgdata-helpdesk:/var/lib/postgresql/data/
- ./initdb-helpdesk:/docker-entrypoint-initdb.d/
expose:
- "5432"
nginx:
image: nginx:1.13-alpine
ports:
- 80:80
environment:
- 'FASTCGI_READ_TIMEOUT=300s'
links:
- alfresco-community-erecruitment-acs:alfresco-community-erecruitment-acs
- alfresco-search-services:alfresco-search-services
depends_on:
- alfresco-community-erecruitment-acs
- alfresco-search-services
labels:
SERVICE_NAME: nginx
read_only: true
volumes:
- ./conf.d/:/etc/nginx/conf.d/
- /var/cache/nginx/
- /var/run/