-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
61 lines (58 loc) · 1.48 KB
/
Copy pathdocker-compose.yml
File metadata and controls
61 lines (58 loc) · 1.48 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
services:
postgres:
image: postgres:16-alpine
container_name: whey_postgres
ports:
- "5432:5432"
environment:
POSTGRES_DB: whey_db
POSTGRES_USER: whey_user
POSTGRES_PASSWORD: whey_pass
TZ: America/Sao_Paulo
volumes:
- postgres_data:/var/lib/postgresql/data
healthcheck:
test: ["CMD-SHELL", "pg_isready -U whey_user -d whey_db"]
interval: 10s
timeout: 5s
retries: 5
restart: unless-stopped
whey_promotion_bot:
build: .
container_name: whey_promotion_bot
ports:
- "8080:8080"
env_file: .env
environment:
- TZ=America/Sao_Paulo
- SPRING_DATASOURCE_URL=jdbc:postgresql://postgres:5432/whey_db
- SPRING_DATASOURCE_USERNAME=whey_user
- SPRING_DATASOURCE_PASSWORD=whey_pass
- WHATSAPP_BASE_URL=http://baileys_sidecar:3000
depends_on:
postgres:
condition: service_healthy
baileys_sidecar:
condition: service_healthy
restart: unless-stopped
baileys_sidecar:
build: ./baileys-sidecar
container_name: baileys_sidecar
ports:
- "3000:3000"
environment:
- TZ=America/Sao_Paulo
- PORT=3000
- AUTH_DIR=/app/auth
volumes:
- baileys_auth:/app/auth
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://localhost:3000/health || exit 1"]
interval: 15s
timeout: 5s
retries: 5
start_period: 45s
restart: unless-stopped
volumes:
postgres_data:
baileys_auth: