-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
66 lines (59 loc) · 1.53 KB
/
docker-compose.yml
File metadata and controls
66 lines (59 loc) · 1.53 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
version: '3.8'
services:
evolution-manager:
build:
context: .
dockerfile: Dockerfile
ports:
- "3000:80"
container_name: evolution-manager-v2
restart: unless-stopped
environment:
- NODE_ENV=production
networks:
- evolution-network
# Optional: Include Evolution API for complete stack
# Uncomment the section below if you want to run Evolution API alongside the manager
# evolution-api:
# image: evolutionapi/evolution-api:latest
# ports:
# - "8080:8080"
# container_name: evolution-api
# restart: unless-stopped
# environment:
# - DATABASE_PROVIDER=postgresql
# - DATABASE_CONNECTION_URI=postgresql://postgres:password@postgres:5432/evolution
# - AUTHENTICATION_API_KEY=your-api-key-here
# - SERVER_PORT=8080
# depends_on:
# - postgres
# - redis
# networks:
# - evolution-network
# postgres:
# image: postgres:15-alpine
# container_name: evolution-postgres
# restart: unless-stopped
# environment:
# - POSTGRES_DB=evolution
# - POSTGRES_USER=postgres
# - POSTGRES_PASSWORD=password
# volumes:
# - postgres_data:/var/lib/postgresql/data
# ports:
# - "5432:5432"
# networks:
# - evolution-network
# redis:
# image: redis:7-alpine
# container_name: evolution-redis
# restart: unless-stopped
# ports:
# - "6379:6379"
# networks:
# - evolution-network
networks:
evolution-network:
driver: bridge
# volumes:
# postgres_data: