Can you help a noob with evolution app?

Hi, I’m running Evolution API on a local Docker setup. I’m trying to connect it to n8n, but the QR code does not appear in the execution results.

You can see my full Docker/JSON configuration here: https://github.com/pepelupo/conf_evolution_api.git

Has anyone experienced this before? Is it a permission issue or a Docker networking problem?

Thank you!

@folson That is probably due to using the old atendai/evolution-api image. This is no longer the master source and regularly gives hassle in rendering QRs.

Update your image source to the current one found on Docker Hub here: evoapicloud/evolution-api

Change this line in your compose file: image: atendai/evolution-api:latest To: image: evoapicloud/evolution-api:latest"

evolution-api:
    container_name: whatsapp_evolution
    image: evoapicloud/evolution-api:homolog
    restart: always
    ports:
      - "8080:8080"

This should help!

2 Likes

Thanks for this.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.