Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ CONFIG_SESSION_PHONE_NAME=Chrome

# Whatsapp Web version for baileys channel
# https://web.whatsapp.com/check-update?version=0&platform=web
CONFIG_SESSION_PHONE_VERSION=2.3000.1015901307
CONFIG_SESSION_PHONE_VERSION=2.3000.1023204200

# Set qrcode display limit
QRCODE_LIMIT=30
Expand Down
4 changes: 2 additions & 2 deletions Docker/swarm/evolution_api_v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.7"

services:
evolution_v2:
image: atendai/evolution-api:v2.1.2
image: atendai/evolution-api:v2.2.3
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (bug_risk): Pin Docker image to a digest for immutability

Pinning to a digest ensures the deployed image won't change unexpectedly if the tag is updated.

Suggested implementation:

    image: atendai/evolution-api@sha256:abc123replacewithactualdigest

You must replace sha256:abc123replacewithactualdigest with the actual digest for atendai/evolution-api:v2.2.3. You can find this by running:

docker pull atendai/evolution-api:v2.2.3
docker inspect --format='{{index .RepoDigests 0}}' atendai/evolution-api:v2.2.3

and copying the sha256 value.

volumes:
- evolution_instances:/evolution/instances
networks:
Expand Down Expand Up @@ -92,7 +92,7 @@ services:
- WEBHOOK_EVENTS_ERRORS_WEBHOOK=
- CONFIG_SESSION_PHONE_CLIENT=Evolution API V2
- CONFIG_SESSION_PHONE_NAME=Chrome
- CONFIG_SESSION_PHONE_VERSION=2.3000.1015901307
- CONFIG_SESSION_PHONE_VERSION=2.3000.1023204200
- QRCODE_LIMIT=30
- OPENAI_ENABLED=true
- DIFY_ENABLED=true
Expand Down