Update
Keeping your Evolution API instance updated is crucial for security, performance, and access to new features. The update method depends on how you initially installed the API. This guide covers the steps to update your Evolution API using Docker Compose and NPM.
Updating with Docker
If you initially set up your Evolution API using Docker, follow these steps to update:
Updating with Docker CLI
If your Evolution API was initially installed using Docker Compose via the command-line interface (CLI), and not through Portainer or any other container management tool, follow these steps to update it:
-
Navigate to the Docker Compose Directory: Open a terminal and go to the directory where your Docker Compose file (
docker-compose.yml
) is located. -
Pull the Latest Image: Update the Evolution API image to the latest version by running the following command:
- Stop and Restart the Containers: After pulling the latest image, stop the current containers and restart them. This can be done using the following command:
Updating with Portainer
If you are using Portainer for container management, follow these steps to update your Evolution API:
-
Access the Portainer Dashboard: Open the Portainer dashboard in a web browser.
-
Navigate to Your Containers: Go to the ‘Stacks’ section where your Evolution API container is listed.
-
Update the Compose:
- Locate the
image
field in your Docker Compose configuration.
- Locate the
- Update the value to
atendai/evolution-api:v2.1.1
for the latest version, or useatendai/evolutionapi:v2.x.x
for a specific version. - After making the changes, click the ‘Deploy’ button at the end of the compose editing window.
- Verify the Update: After recreating the container, verify that the Evolution API is running the latest version. This can typically be checked through the API version endpoint or the logs.
For production environments, it is recommended to specify a particular version of the Evolution API (e.g., atendai/evolution-api:v1.x.x) instead of using latest. This practice ensures stability and predictability, as it protects your production environment from potential issues arising from unexpected changes in the latest version.
By following these steps, you can ensure that your Evolution API is always up to date using Portainer.
Updating with NPM
Updating your Evolution API installation via NPM involves several steps to ensure a smooth transition to the new version. Here’s a step-by-step guide:
- Clean and Stop: Clear all PM2 logs, which is useful for troubleshooting after the update, and temporarily stop the Evolution API to apply updates safely.
- Reset the Local Repository and Pull the Latest Updates: Ensure that your local code is in sync with the latest commit and pull the latest updates from the repository. Optionally, switch to a specific version if you are not using the latest one. This is recommended for production environments.
- Clean Installation: Remove the existing
node_modules
to avoid potential conflicts with new dependencies and install the necessary Node.js dependencies for the updated version.