fix docker and create docker-compose with all services

This commit is contained in:
Helio Elias
2023-07-21 15:02:09 +00:00
parent 7d3ae2347b
commit 04a6f7c954
3 changed files with 204 additions and 8 deletions

View File

@@ -0,0 +1,22 @@
version: '3.3'
services:
api:
container_name: evolution_api
image: davidsongomes/evolution-api
restart: always
ports:
- 8080:8080
volumes:
- evolution_instances:/evolution/instances
- evolution_store:/evolution/store
env_file:
- .env
command: ['node', './dist/src/main.js']
expose:
- 8080
volumes:
evolution_instances:
evolution_store: