mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-09 01:49:37 -06:00
- Introduced Kafka and Zookeeper services in a new docker-compose file for better message handling. - Added frontend service to both development and production docker-compose files for improved UI management. - Updated evolution-manager-v2 submodule to the latest commit. - Updated CHANGELOG for version 2.3.5 release.
36 lines
605 B
YAML
36 lines
605 B
YAML
services:
|
|
api:
|
|
container_name: evolution_api
|
|
image: evolution/api:local
|
|
build: .
|
|
restart: always
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- evolution_instances:/evolution/instances
|
|
networks:
|
|
- evolution-net
|
|
env_file:
|
|
- .env
|
|
expose:
|
|
- 8080
|
|
|
|
frontend:
|
|
container_name: evolution_frontend
|
|
image: evolution/manager:local
|
|
build: ./evolution-manager-v2
|
|
restart: always
|
|
ports:
|
|
- "3000:80"
|
|
networks:
|
|
- evolution-net
|
|
|
|
volumes:
|
|
evolution_instances:
|
|
|
|
|
|
networks:
|
|
evolution-net:
|
|
name: evolution-net
|
|
driver: bridge
|