feat: added option to generate qrcode as soon as the instance is created

This commit is contained in:
Davidson Gomes
2023-06-13 17:23:52 -03:00
parent 849d570bcb
commit c63da9cd6e
5 changed files with 46 additions and 8 deletions

View File

@@ -11,7 +11,7 @@ services:
ports:
- 8080:8080
volumes:
- ./docker-data/instances:/evolution/instances
- evolution_instances:/evolution/instances
depends_on:
- mongodb
- redis
@@ -77,7 +77,7 @@ services:
# OBS: This key must be inserted in the request header to create an instance.
- AUTHENTICATION_API_KEY=B6D711FCDE4D4FD5936544120E713976
# Expose the api key on return from fetch instances
- AUTHENTICATION_EXPOSE_IN_FETCH_INSTANCES=false
- AUTHENTICATION_EXPOSE_IN_FETCH_INSTANCES=true
# Set the secret key to encrypt and decrypt your token and its expiration time.
- AUTHENTICATION_JWT_EXPIRIN_IN=0 # seconds - 3600s === 1h | zero (0) - never expires
# Set the instance name and webhook url to create an instance in init the application
@@ -98,8 +98,8 @@ services:
image: mongo
restart: always
volumes:
- ./docker-data/mongodb/data:/data/db
- ./docker-data/mongodb/configdb:/data/configdb
- evolution_mongodb_data:/data/db
- evolution_mongodb_configdb:/data/configdb
ports:
- 27017:27017
environment:
@@ -112,10 +112,25 @@ services:
redis:
image: redis:latest
command: >
redis-server
--port 6379
--appendonly yes
--save 900 1
--save 300 10
--save 60 10000
--appendfsync everysec
volumes:
- ./docker-data/redis:/data
- evolution_redis:/data
container_name: redis
ports:
- 6379:6379
networks:
- evolution-net
- evolution-net
volumes:
evolution_instances:
evolution_mongodb_data:
evolution_mongodb_configdb:
evolution_redis: