chore: adjusts in docker files

This commit is contained in:
Davidson Gomes 2024-08-09 12:41:16 -03:00
parent e7ff09752e
commit 0f299993d9
2 changed files with 27 additions and 1 deletions

View File

@ -0,0 +1,27 @@
version: '3.3'
services:
mysql:
container_name: mysql
image: percona/percona-server:8.0
networks:
- evolution-net
restart: always
ports:
- 3306:3306
environment:
- MYSQL_ROOT_PASSWORD=root
- TZ=America/Bahia
volumes:
- mysql_data:/var/lib/mysql
expose:
- 3306
volumes:
mysql_data:
networks:
evolution-net:
name: evolution-net
driver: bridge

View File

@ -2034,7 +2034,6 @@ export class BaileysStartupService extends ChannelStartupService {
}
if (this.configService.get<Dify>('DIFY').ENABLED) {
console.log('DIFY messageRaw', messageRaw);
if (messageRaw.messageType !== 'reactionMessage')
await this.difyService.sendDify(
{ instanceName: this.instance.name, instanceId: this.instanceId },