forked from EvolutionAPI/evolution-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
102 lines (100 loc) · 2.08 KB
/
docker-compose.yaml
File metadata and controls
102 lines (100 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# version: "3.8"
#
# services:
# api:
# container_name: evolution_api
# image: evoapicloud/evolution-api:latest
# restart: always
# depends_on:
# - redis
# - evolution-postgres
# ports:
# - "127.0.0.1:8080:8080"
# volumes:
# - evolution_instances:/evolution/instances
# networks:
# - evolution-net
# - dokploy-network
# env_file:
# - .env
# expose:
# - "8080"
#
# frontend:
# container_name: evolution_frontend
# image: evoapicloud/evolution-manager:latest
# restart: always
# ports:
# - "3000:80"
# networks:
# - evolution-net
#
# redis:
# container_name: evolution_redis
# image: redis:latest
# restart: always
# command: >
# redis-server --port 6379 --appendonly yes
# volumes:
# - evolution_redis:/data
# networks:
# evolution-net:
# aliases:
# - evolution-redis
# dokploy-network:
# aliases:
# - evolution-redis
# expose:
# - "6379"
#
# evolution-postgres:
# container_name: evolution_postgres
# image: postgres:15
# restart: always
# env_file:
# - .env
# command:
# - postgres
# - -c
# - max_connections=1000
# - -c
# - listen_addresses=*
# environment:
# - POSTGRES_DB=${POSTGRES_DATABASE}
# - POSTGRES_USER=${POSTGRES_USERNAME}
# - POSTGRES_PASSWORD=${POSTGRES_PASSWORD}
# volumes:
# - postgres_data:/var/lib/postgresql/data
# networks:
# - evolution-net
# - dokploy-network
# expose:
# - "5432"
#
# volumes:
# evolution_instances:
# evolution_redis:
# postgres_data:
#
# networks:
# evolution-net:
# name: evolution-net
# driver: bridge
# dokploy-network:
# external: true
services:
api:
container_name: evolution_api
image: evolution/api:local
build: .
restart: always
ports:
- 8080:8080
volumes:
- evolution_instances:/evolution/instances
env_file:
- .env
expose:
- 8080
volumes:
evolution_instances: