cancel
Showing results for 
Search instead for 
Did you mean: 

Installing activi-console and activi-explorer with community 7.4 using docker

JC83
Confirmed Champ
Confirmed Champ

Hi,

I've successfully installed Alfresco using docker .. this is great ..

But now I'm missing activi-admin (first) and later on, I will need activiti-explorer..

How can I install that ?

Thanks a lot !

1 ACCEPTED ANSWER

franktucker907
Champ on-the-rise
Champ on-the-rise

Hello,

Download Activiti Admin:
You can download the Activiti Admin WAR file from the official Activiti website or GitHub repository.
Prepare Docker Environment:     yourtexasbenefits login
Ensure you have Docker installed and running on your system.
Create a Dockerfile:
Create a Dockerfile to build an image for Activiti Admin. Here’s a basic example:
FROM tomcat:9.0
COPY activiti-admin.war /usr/local/tomcat/webapps/

Build and Run the Docker Image:
Build the Docker image:
docker build -t activiti-admin .

Run the Docker container:
docker run -d -p 8080:8080 activiti-admin

Best Regards
franktucker907

View answer in original post

2 REPLIES 2

franktucker907
Champ on-the-rise
Champ on-the-rise

Hello,

Download Activiti Admin:
You can download the Activiti Admin WAR file from the official Activiti website or GitHub repository.
Prepare Docker Environment:     yourtexasbenefits login
Ensure you have Docker installed and running on your system.
Create a Dockerfile:
Create a Dockerfile to build an image for Activiti Admin. Here’s a basic example:
FROM tomcat:9.0
COPY activiti-admin.war /usr/local/tomcat/webapps/

Build and Run the Docker Image:
Build the Docker image:
docker build -t activiti-admin .

Run the Docker container:
docker run -d -p 8080:8080 activiti-admin

Best Regards
franktucker907

thank you !!!!