forked from chatwoot/chatwoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.dev.yaml
More file actions
158 lines (149 loc) · 4.76 KB
/
Copy pathdocker-compose.dev.yaml
File metadata and controls
158 lines (149 loc) · 4.76 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# =============================================================================
# Chatwit v4.10 - Docker Compose para Desenvolvimento
# =============================================================================
# Baseado no compose que já funcionava, adaptado para a v4.10
#
# Uso:
# ./dev.sh → Builda e sobe tudo
# ./dev.sh -n → Builda e sobe tudo + ngrok
# docker compose -f docker-compose.dev.yaml up -d
#
# URLs:
# Aplicação → http://localhost:3000
# MailHog → http://localhost:8025
# Ngrok UI → http://localhost:4040 (quando ativado)
# =============================================================================
x-base: &base
build:
context: .
dockerfile: ./docker/Dockerfile
args:
BUNDLE_WITHOUT: ''
EXECJS_RUNTIME: 'Node'
RAILS_ENV: 'development'
RAILS_SERVE_STATIC_FILES: 'false'
tty: true
stdin_open: true
image: chatwit:development
env_file: .env
services:
rails:
<<: *base
image: chatwit:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
depends_on:
- vite
- mailhog
- sidekiq
ports:
- 3000:3000
env_file: .env
environment:
- VITE_DEV_SERVER_HOST=vite
- VITE_RUBY_HOST=vite
- VITE_RUBY_PORT=3036
- NODE_ENV=development
- RAILS_ENV=development
networks:
- minha_rede
command: ["sh", "-c", "rm -f tmp/pids/server.pid && bundle exec rails s -p 3000 -b 0.0.0.0"]
sidekiq:
<<: *base
image: chatwit:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
depends_on:
- mailhog
environment:
- NODE_ENV=development
- RAILS_ENV=development
networks:
- minha_rede
command: ["sh", "-c", "git config --global --add safe.directory /app || true && bundle exec sidekiq -C config/sidekiq.yml"]
vite:
<<: *base
image: chatwit:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
ports:
- "3036:3036"
environment:
- VITE_DEV_SERVER_HOST=0.0.0.0
- NODE_ENV=development
- RAILS_ENV=development
networks:
- minha_rede
command: ["sh", "-c", "pnpm exec vite dev --host 0.0.0.0 --port 3036"]
mailhog:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025
networks:
- minha_rede
evolution-go:
build:
context: ./evolution-go
dockerfile: Dockerfile
ports:
- "${EVOLUTION_GO_SERVER_PORT:-8080}:8080"
environment:
- SERVER_PORT=${EVOLUTION_GO_SERVER_PORT:-8080}
- CLIENT_NAME=${EVOLUTION_GO_CLIENT_NAME:-chatwit-evolution}
- GLOBAL_API_KEY=${EVOLUTION_GO_GLOBAL_API_KEY:-dev-evolution-key}
- POSTGRES_AUTH_DB=${EVOLUTION_GO_POSTGRES_AUTH_DB:-postgresql://postgres:postgres@postgres:5432/evolution_go_auth?sslmode=disable}
- POSTGRES_USERS_DB=${EVOLUTION_GO_POSTGRES_USERS_DB:-postgresql://postgres:postgres@postgres:5432/evolution_go_users?sslmode=disable}
- DATABASE_SAVE_MESSAGES=${EVOLUTION_GO_DATABASE_SAVE_MESSAGES:-false}
- WEBHOOK_URL=${EVOLUTION_GO_WEBHOOK_URL:-http://rails:3000/webhooks/evolution_go}
- QRCODE_MAX_COUNT=${EVOLUTION_GO_QRCODE_MAX_COUNT:-20}
- WADEBUG=${EVOLUTION_GO_WADEBUG:-INFO}
- LOGTYPE=${EVOLUTION_GO_LOGTYPE:-console}
healthcheck:
test: ["CMD-SHELL", "wget -qO- http://127.0.0.1:${EVOLUTION_GO_SERVER_PORT:-8080}/server/ok | grep -q 'ok'"]
interval: 15s
timeout: 5s
retries: 5
start_period: 15s
networks:
- minha_rede
# ───────────────────────────────────────────────────────
# NGROK - Túnel público (só sobe com: ./dev.sh -n)
# UI: http://localhost:4040
# ───────────────────────────────────────────────────────
ngrok:
image: ngrok/ngrok:latest
container_name: chatwit-ngrok
profiles:
- ngrok
environment:
NGROK_AUTHTOKEN: ${NGROK_AUTHTOKEN:-31A71USAsfWBPiCJZc9Dw39a35k_2fUqtFQChZSDBMvwS1bxw}
command: http rails:3000 --domain=${NGROK_DOMAIN:-beagle-great-awfully.ngrok-free.app}
ports:
- "4040:4040"
depends_on:
- rails
networks:
- minha_rede
restart: unless-stopped
volumes:
packs:
node_modules:
cache:
bundle:
networks:
minha_rede:
external: true
name: minha_rede