cancel
Showing results for 
Search instead for 
Did you mean: 

unhealty containers installation angelbarroy 23.2

javico1
Confirmed Champ
Confirmed Champ
Hello guys, I have been trying to install alfresco community for more than a 
week through angelbarroy's tutorial on alfresco docker when installing version 23.2,
the alfresco content services containers, the share shows me unhealty, does anyone
have any ideas, and it is not a resource problem since the machine has 38GB of ram and
an 18-core virtual processor 2TB storage
1 ACCEPTED ANSWER

fedorow
Elite Collaborator
Elite Collaborator

As I understand you are using the https://github.com/Alfresco/alfresco-docker-installer

From the docker-compose.yml file remove all 'healthcheck' records and change all depends_on in that maner:

        depends_on:
          alfresco:
            condition: service_healthy

to

        depends_on:
          - alfresco

This allow you to have acess to log files during container starts. Look at Share log (docker compose logs -f share) and resolve the errors.

View answer in original post

1 REPLY 1

fedorow
Elite Collaborator
Elite Collaborator

As I understand you are using the https://github.com/Alfresco/alfresco-docker-installer

From the docker-compose.yml file remove all 'healthcheck' records and change all depends_on in that maner:

        depends_on:
          alfresco:
            condition: service_healthy

to

        depends_on:
          - alfresco

This allow you to have acess to log files during container starts. Look at Share log (docker compose logs -f share) and resolve the errors.