09-02-2024 08:39 AM
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 !
09-05-2024 03:13 AM
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
09-05-2024 03:13 AM
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
09-05-2024 07:52 AM
thank you !!!!
Explore our Alfresco products with the links below. Use labels to filter content by product module.