unhealty containers installation angelbarroy 23.2

cancel
Showing results for 
Search instead for 
Did you mean: 
javico1
Active Member II

unhealty containers installation angelbarroy 23.2

Jump to solution
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 Solution

Accepted Solutions
fedorow
Senior Member II

Re: unhealty containers installation angelbarroy 23.2

Jump to solution

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 solution in original post

1 Reply
fedorow
Senior Member II

Re: unhealty containers installation angelbarroy 23.2

Jump to solution

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.