ibmcom/alfresco-ppc64le

By ibmcom

Updated over 6 years ago

Alfresco content management system

Image
0

10K+

Supported tags: 5.1.a

How to use the image? 1- start MariaDB container docker run --name mysql_db -e MYSQL_ROOT_PASSWORD= -d -p 3306:3306 ibmcom/mariadb:10.1.16

Create the database and a user as follows

CREATE DATABASE alfresco default character set utf8 collate utf8_bin; create user 'alfresco'@'localhost' identified by 'alfresco'; grant all on alfresco. to 'alfresco'@'localhost' identified by 'alfresco' with grant option; grant all on alfresco. to 'alfresco'@'%' identified by 'alfresco' with grant option;

2- start alfresco container docker run --cap-add=SYS_PTRACE --name=test_alfresco --link mysql_db:mysql_db -d -p 8080:8080 alfresco

3- Go to - http://<hostname/IP Address>:8080/alfresco (Note - Server will be up in 5 to 7 minutes) Go to - http://<hostname/IP Address>:8080/share

Docker Pull Command

docker pull ibmcom/alfresco-ppc64le