evolution-api/docker-compose.yaml
2023-07-16 19:14:00 -03:00

32 lines
575 B
YAML

version: '3.3'
services:
api:
container_name: evolution_api
image: evolution/api:local
restart: always
ports:
- 8080:8080
volumes:
- evolution_instances:/evolution/instances
- evolution_store:/evolution/store
env_file:
- ./Docker/.env
command: ['node', './dist/src/main.js']
expose:
- 8080
volumes:
evolution_instances:
name: evolution_instances
external: true
evolution_store:
name: evolution_store
external: true
networks:
evolution-net:
name: evolution-net
external: true