Skip to content

wabson/alfresco

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

alfresco

Alfresco Community Edition docker image

Updates

  1. Updated to version 201605-GA
  2. Configured Alfresco-Solr4 communication to be plain HTTP
  3. Added LibreOffice external connection LibreOffice docker image example
  4. Updated docker-compose.yml file to version 2
  5. Added ImageMagick configuration
  6. Added AOS Module
  7. Added Google Docs intregration amps
  8. Added JConsole addOn

Use

$ docker-compose up -d --build
$ docker-compose up -d libreoffice (workarround to the **first** execution of libreoffice container)
$ docker-compose logs -f alfresco

Manual startup

First thing we need is a PostgreSQL database to connect to, if you haven't one already, just run it with docker

$ docker run --name postgres -e POSTGRES_DB=alfresco -e POSTGRES_USER=alfresco -e POSTGRES_PASSWORD=alfresco -d postgres

Second, we need a LibreOffice instance that Alfresco will use as a Trasnformation server (in TCP 8100 by default)

$ docker run --name libreoffice -d keensoft/libreoffice:4.4.5

Third, build this docker image

$ docker build -t \(your_tag\) .

And lastly run the dockerized Alfresco

$ docker run --name \(your_name\) --link postgres:postgres --link libreoffice:libreoffice -p 8080:8080 -d \(your_tag\)

Access

http://localhost:8080/share (admin/admin)

About

Alfresco Standalone Community Dockerfile

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%