mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-13 07:04:50 -06:00
chore: adjusts in docker files
This commit is contained in:
parent
e7ff09752e
commit
0f299993d9
27
Docker/mysql/docker-compose.yaml
Normal file
27
Docker/mysql/docker-compose.yaml
Normal 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
|
@ -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 },
|
||||
|
Loading…
Reference in New Issue
Block a user