Coder Social home page Coder Social logo

Comments (3)

gui81 avatar gui81 commented on July 26, 2024

Try the latest version. I did make it easier to bootstrap the data on an initial install. Also make sure /home/alfresco/* exist and that your container has read/write permissions to those directories.

from docker-alfresco.

xt0x1c avatar xt0x1c commented on July 26, 2024

Same problem here with the latest version
if i try to login i get an error like:

Ihre Authentifizierungsdaten wurden nicht erkannt oder Alfresco Content Services ist zurzeit nicht verfügbar.

Your authentication data has not been detected or Alfresco Content Services is unavailable at this time.

from docker-alfresco.

gui81 avatar gui81 commented on July 26, 2024

I successfully used the following docker-compose.yml (similar to the one above) from scratch:

version: '2'
services:
  alfresco:
    image: gui81/alfresco
    environment:
      CONTENT_STORE: /content
      DB_HOST: mysql
      DB_KIND: mysql
      DB_NAME: alfresco
      DB_PASSWORD: mypassword
      DB_USERNAME: root
      LDAP_ENABLED: "false"
    links:
      - mysql:mysql
    depends_on:
      - mysql
    ports:
      - 8080:8080
    volumes:
      - [/path_to/container_data]/alfresco/alf_data:/alfresco/alf_data
      - [/path_to/container_data]/alfresco/logs:/alfresco/tomcat/logs
      - [/path_to/container_data]/alfresco/content:/content

  mysql:
    environment:
      MYSQL_ROOT_PASSWORD: mypassword
      MYSQL_DATABASE: alfresco
    image: mysql
    volumes:
      - [/path_to/container_data]/alfresco/mysql:/var/lib/mysql

Replace [/path_to/container_data] with a path that works on your system. Also make sure you have permissions to write to your volume from the container. I'm closing unless anyone can provide more details that proves it is an error with the image instead of operator error.

from docker-alfresco.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.