mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-07-14 09:51:24 -06:00
29 lines
523 B
Plaintext
29 lines
523 B
Plaintext
version: '3.3'
|
|
|
|
services:
|
|
api:
|
|
container_name: evolution_api
|
|
image: atendai/evolution-api:latest
|
|
restart: always
|
|
ports:
|
|
- 8080:8080
|
|
volumes:
|
|
- evolution_instances:/evolution/instances
|
|
- evolution_store:/evolution/store
|
|
networks:
|
|
- evolution-net
|
|
env_file:
|
|
- ./Docker/.env
|
|
command: ['node', './dist/src/main.js']
|
|
expose:
|
|
- 8080
|
|
|
|
volumes:
|
|
evolution_instances:
|
|
evolution_store:
|
|
|
|
networks:
|
|
evolution-net:
|
|
name: evolution-net
|
|
driver: bridge
|