forked from chatwoot/chatwoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
173 lines (165 loc) · 4.55 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
173 lines (165 loc) · 4.55 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
services:
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: chatwoot:development
env_file: .env
rails:
<<: *base
build:
context: .
dockerfile: ./docker/dockerfiles/rails.Dockerfile
image: chatwoot-rails:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
depends_on:
- postgres
- redis
- mailhog
ports:
- 3000:3000
environment:
- VITE_DEV_SERVER_HOST=vite
- NODE_ENV=development
- RAILS_ENV=development
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=chatwoot
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=chatwoot_password
- REDIS_URL=redis://redis:6379
- REDIS_PASSWORD=
- FRONTEND_URL=http://localhost:3000
- SMTP_DOMAIN=localhost
- SMTP_PORT=1025
- SMTP_ADDRESS=mailhog
- SECRET_KEY_BASE=replace_with_your_own_secret_key_base_minimum_length_is_30_characters_placeholder
- INSTALLATION_ENV=docker
- CW_ENTERPRISE_EDITION=false
- DISABLE_ENTERPRISE=true
- ACTIVE_STORAGE_SERVICE=local
- DEFAULT_LOCALE=en
entrypoint: docker/entrypoints/rails.sh
command: ["bundle", "exec", "rails", "s", "-p", "3000", "-b", "0.0.0.0"]
sidekiq:
<<: *base
build:
context: .
dockerfile: ./docker/dockerfiles/rails.Dockerfile
image: chatwoot-rails:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
depends_on:
- postgres
- redis
- mailhog
environment:
- NODE_ENV=development
- RAILS_ENV=development
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=chatwoot
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=chatwoot_password
- REDIS_URL=redis://redis:6379
- REDIS_PASSWORD=
- FRONTEND_URL=http://localhost:3000
- SMTP_DOMAIN=localhost
- SMTP_PORT=1025
- SMTP_ADDRESS=mailhog
- SECRET_KEY_BASE=replace_with_your_own_secret_key_base_minimum_length_is_30_characters_placeholder
- INSTALLATION_ENV=docker
- CW_ENTERPRISE_EDITION=false
- DISABLE_ENTERPRISE=true
- ACTIVE_STORAGE_SERVICE=local
- DEFAULT_LOCALE=en
command: ["bundle", "exec", "sidekiq", "-C", "config/sidekiq.yml"]
vite:
<<: *base
build:
context: .
dockerfile: ./docker/dockerfiles/vite.Dockerfile
args:
BUNDLE_WITHOUT: ''
EXECJS_RUNTIME: 'Node'
RAILS_ENV: 'development'
RAILS_SERVE_STATIC_FILES: 'false'
image: chatwoot-vite:development
volumes:
- ./:/app:delegated
- node_modules:/app/node_modules
- packs:/app/public/packs
- cache:/app/tmp/cache
- bundle:/usr/local/bundle
ports:
- "3036:3036" # Vite dev server
environment:
- VITE_DEV_SERVER_HOST=0.0.0.0
- NODE_ENV=development
- RAILS_ENV=development
- POSTGRES_HOST=postgres
- POSTGRES_PORT=5432
- POSTGRES_DB=chatwoot
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=chatwoot_password
- REDIS_URL=redis://redis:6379
- REDIS_PASSWORD=
- FRONTEND_URL=http://localhost:3000
- SECRET_KEY_BASE=replace_with_your_own_secret_key_base_minimum_length_is_30_characters_placeholder
- INSTALLATION_ENV=docker
- CW_ENTERPRISE_EDITION=false
- DISABLE_ENTERPRISE=true
- ACTIVE_STORAGE_SERVICE=local
- DEFAULT_LOCALE=en
entrypoint: docker/entrypoints/vite.sh
command: ["pnpm", "dev"]
postgres:
image: pgvector/pgvector:pg16
restart: always
ports:
- '5434:5432'
volumes:
- postgres_data:/var/lib/postgresql/data
environment:
- POSTGRES_DB=chatwoot
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=chatwoot_password
redis:
image: redis:alpine
restart: always
command: ["sh", "-c", "redis-server --requirepass \"$REDIS_PASSWORD\""]
env_file: .env
volumes:
- redis_data:/data
ports:
- '6380:6379'
mailhog:
image: mailhog/mailhog
ports:
- 1025:1025
- 8025:8025
volumes:
postgres_data:
driver: local
redis_data:
driver: local
packs:
node_modules:
cache:
bundle: