FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
evolution-api/docker-compose.yaml at main · gitsofian/evolution-api · GitHub
gitsofian
/
evolution-api
Public
forked from
evolution-foundation/evolution-api
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
evolution-api
/
docker-compose.yaml
Copy path
More file actions
More file actions
Latest commit
History
History
History
75 lines (70 loc) · 1.44 KB
Breadcrumbs
evolution-api
/
docker-compose.yaml
Copy path
File metadata and controls
75 lines (70 loc) · 1.44 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
version
:
"
3.8
"
services
:
api
:
container_name
:
evolution_api
image
:
evolution/api:metrics
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
"
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
Back
|
FazBrowse Home
|
New Git URL