Angel Borroy
Angel Borroy
Verify if the database (postgres service) is up & ready. Spoiler: it's not.
Try with the following sequence: ``` docker compose up postgres docker compose up ``` So you provide some time to postgres to start properly.
You may try starting only `postgres` service and verify it works as expected, using some tool like `psql` to verify database and user `alfresco` is running.
May you add your `docker-compose.yml` content to this issue?
The error seems to be that repository is not able to connect to postgres. Are there additional errors in the log?
`Caused by: java.net.SocketTimeoutException: Connect timed out` Repository is not connecting to `postgres:5432`. You may try checking connectivity from inside repository container to identify to cause.
I've been testing that configuration locally and it seems to be working as expected. Recommendations: * Verify you're using the latest version of alfresco-docker-installer * Verify that `search/Dockerfile` includes `FROM...
Not sure if I understand your question. When using Basic Auth with the REST API you need to use user credentials (like admin:admin). When using a Ticket for authentication, you...
Again, I have no idea what you mean... Put a single `curl` command that works with manual installation and fails with docker installation. Without `verbose` information, please. Just only response...
With a default Docker Compose, following sequence works for me. ``` curl --location 'http://localhost/alfresco/s/api/login?u=admin&pw=admin' TICKET_8eff23505369baa5941a1c53e3db49aa1821cb23 ``` ``` curl --location 'http://localhost/alfresco/api/-default-/public/alfresco/versions/1/nodes/-root-?alf_ticket=TICKET_8eff23505369baa5941a1c53e3db49aa1821cb23' 200 OK ```