Skip to content

Commit de820e2

Browse files
authored
Merge pull request #1 from flashboss/master
APS 2.0.1 upgrade
2 parents e73ca90 + 204089e commit de820e2

File tree

4 files changed

+15
-13
lines changed

4 files changed

+15
-13
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alfresco/process-services:1.11.0
1+
FROM alfresco/process-services:2.1.0
22

33
ARG TOMCAT_DIR=/usr/local/tomcat
44

@@ -14,4 +14,4 @@ COPY logging/logback.xml $TOMCAT_DIR/lib
1414
COPY properties/activiti-app.properties $TOMCAT_DIR/lib
1515
COPY properties/activiti-ldap.properties $TOMCAT_DIR/lib
1616

17-
COPY activiti-license/*.* $TOMCAT_DIR/lib/
17+
COPY activiti-license/*.* $TOMCAT_DIR/lib/

Dockerfile-admin

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM alfresco/process-services-admin:1.11.0
1+
FROM alfresco/process-services-admin:2.1.0
22

33
ARG TOMCAT_DIR=/usr/local/tomcat
44

55
USER root
66

77
COPY properties/activiti-admin.properties $TOMCAT_DIR/lib
8-
COPY admin/tomcat/conf/server.xml $TOMCAT_DIR/conf
8+
COPY admin/tomcat/conf/server.xml $TOMCAT_DIR/conf

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
lucastancapiano@MacBook-Pro alfresco-process-services-docker-deployment % cat README.md
12
# Alfresco Process Services Docker Deployment
23
Docker Compose template for deploying the Alfresco Process Services Platform.
34

@@ -6,10 +7,10 @@ For developers interested to build extensions please see the [Alfresco Process S
67

78
The architecture template will deploy for you the following components:
89

9-
* activiti-app 1.11.0
10-
* activiti-admin 1.11.0
11-
* ElasticSearch 7.6.0
12-
* PostgreSQL 10.9
10+
* activiti-app 2.1.0
11+
* activiti-admin 2.1.0
12+
* ElasticSearch 7.13.2
13+
* PostgreSQL 13.1
1314

1415
Each component will have its own Docker Volume for managing the storage:
1516

@@ -39,7 +40,7 @@ Before using this project you have to configure the following components:
3940

4041
```
4142
$ docker -v
42-
Docker version 19.03.8, build afacb8b
43+
Docker version 20.10.8, build afacb8b
4344
```
4445

4546
3. Docker Compose is included as part of Windows and Mac Docker installers.
@@ -52,7 +53,7 @@ For Linux-based users, install both the component separately with the following:
5253

5354
```
5455
$ docker-compose -v
55-
docker-compose version 1.25.5, build 8a1c60f6
56+
docker-compose version 1.29.2, build 8a1c60f6
5657
```
5758

5859
### APS Valid License
@@ -104,3 +105,4 @@ Return in tail with:
104105
```
105106
./run.sh tail
106107
```
108+
lucastancapiano@MacBook-Pro alfresco-process-services-docker-deployment %

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ services:
3030
- postgres-admin
3131

3232
elasticsearch:
33-
image: elasticsearch:7.6.0
33+
image: elasticsearch:7.13.2
3434
environment:
3535
discovery.type: single-node
3636
ES_JAVA_OPTS: -Xms512m -Xmx512m
@@ -41,7 +41,7 @@ services:
4141
- aps-es-volume:/usr/share/elasticsearch/data
4242

4343
postgres:
44-
image: postgres:10.9
44+
image: postgres:13.1
4545
environment:
4646
POSTGRES_DB: activiti
4747
POSTGRES_USER: alfresco
@@ -52,7 +52,7 @@ services:
5252
- aps-db-volume:/var/lib/postgresql/data
5353

5454
postgres-admin:
55-
image: postgres:10.9
55+
image: postgres:13.1
5656
environment:
5757
POSTGRES_DB: activiti-admin
5858
POSTGRES_USER: alfresco

0 commit comments

Comments
 (0)