We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b93aac commit e4548f6Copy full SHA for e4548f6
docker-compose.yaml.example.dockerhub
@@ -0,0 +1,28 @@
1
+version: '3.3'
2
+
3
+services:
4
+ api:
5
+ container_name: evolution_api
6
+ image: davidsongomes/evolution-api:latest
7
+ restart: always
8
+ ports:
9
+ - 8080:8080
10
+ volumes:
11
+ - evolution_instances:/evolution/instances
12
+ - evolution_store:/evolution/store
13
+ networks:
14
+ - evolution-net
15
+ env_file:
16
+ - ./Docker/.env
17
+ command: ['node', './dist/src/main.js']
18
+ expose:
19
+ - 8080
20
21
+volumes:
22
+ evolution_instances:
23
+ evolution_store:
24
25
+networks:
26
+ evolution-net:
27
+ external: true
28
0 commit comments