We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa09d37 commit 32430a4Copy full SHA for 32430a4
1 file changed
docker-compose.dev.yaml
@@ -1,35 +1,4 @@
1
-services:
2
- api:
3
- container_name: evolution_api
4
- image: evolution/api:local
5
- build: .
6
- restart: always
7
- ports:
8
- - 8080:8080
9
- volumes:
10
- - evolution_instances:/evolution/instances
11
- networks:
12
- - evolution-net
13
- env_file:
14
- - .env
15
- expose:
16
- - 8080
17
-
18
- frontend:
19
- container_name: evolution_frontend
20
- image: evolution/manager:local
21
- build: ./evolution-manager-v2
22
23
24
- - "3000:80"
25
26
27
28
-volumes:
29
- evolution_instances:
30
31
32
-networks:
33
- evolution-net:
34
- name: evolution-net
35
- driver: bridge
+docker run -d --name evolution \
+ -p 8080:8080 \
+ -e AUTHENTICATION_API_KEY=sua-api-key-aqui \
+ atendai/evolution-api
0 commit comments