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 !
Solved! Go 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
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 !!!!
Ask for and offer help to other Alfresco Process Services and Activiti Users and members of the Alfresco team.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.