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

cancel
Showing results for 
Search instead for 
Did you mean: 
JC83
Active Member II

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

Jump to solution

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 Solution

Accepted Solutions
franktucker907
Active Member

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

Jump to solution

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 solution in original post

2 Replies
franktucker907
Active Member

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

Jump to solution

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

 

JC83
Active Member II

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

Jump to solution

thank you !!!!