forked from forem/forem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
171 lines (159 loc) · 4.36 KB
/
docker-compose.yml
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
x-app: &app
build:
target: development
context: .
args:
PG_MAJOR: '13'
image: ghcr.io/forem/forem:development
environment: &env
NODE_ENV: ${NODE_ENV:-development}
RAILS_ENV: ${RAILS_ENV:-development}
tmpfs:
- /tmp
- /app/tmp/pids
x-backend: &backend
<<: *app
stdin_open: true
tty: true
volumes:
- ${LOCAL_WORKSPACE_FOLDER:-.}:/app:cached
- bundle:/usr/local/bundle
- cypress:/root/.cache/Cypress
- rails_cache:/app/tmp/cache
- assets:/app/public/assets
- node_modules:/app/node_modules
- packs:/app/public/packs
- packs-test:/app/public/packs-test
- history:/usr/local/hist
- ${LOCAL_WORKSPACE_FOLDER:-.}/.dockerdev/.psqlrc:/root/.psqlrc:ro
environment: &backend_environment
<<: *env
CHROME_URL: http://chrome:3333
REDIS_URL: redis://redis:6379/
DATABASE_URL: postgres://postgres:postgres@postgres:5432
DATABASE_URL_TEST: postgres://postgres:postgres@postgres:5432
WEBPACKER_DEV_SERVER_HOST: webpacker
MALLOC_ARENA_MAX: 2
WEB_CONCURRENCY: ${WEB_CONCURRENCY:-1}
BOOTSNAP_CACHE_DIR: /usr/local/bundle/_bootsnap
XDG_DATA_HOME: /app/tmp/cache
YARN_CACHE_FOLDER: /app/node_modules/.yarn-cache
HISTFILE: /usr/local/hist/.bash_history
PSQL_HISTFILE: /usr/local/hist/.psql_history
IRB_HISTFILE: /usr/local/hist/.irb_history
depends_on:
postgres:
condition: service_healthy
redis:
condition: service_healthy
services:
devcontainer:
<<: *backend
environment:
MALLOC_ARENA_MAX: 2
WEB_CONCURRENCY: ${WEB_CONCURRENCY:-1}
REDIS_URL: redis://redis:6379/
DATABASE_URL: postgres://postgres:postgres@postgres:5432
DATABASE_URL_TEST: postgres://postgres:postgres@postgres:5432
CHROME_URL: http://chrome:3333
volumes:
- ${LOCAL_WORKSPACE_FOLDER:-.}:/workspaces/forem:cached
- bundle:/usr/local/bundle
- cypress:/root/.cache/Cypress
- rails_cache:/workspaces/forem/tmp/cache
- assets:/workspaces/forem/public/assets
- node_modules:/workspaces/forem/node_modules
- packs:/workspaces/forem/public/packs
- packs-test:/workspaces/forem/public/packs-test
- history:/usr/local/hist
- ${LOCAL_WORKSPACE_FOLDER:-.}/.dockerdev/.psqlrc:/root/.psqlrc:ro
- /var/run/docker.sock:/var/run/docker-host.sock
command: sleep infinity
tmpfs:
- /workspaces/forem/tmp/pids
ports:
- '3000:3000'
rails:
<<: *backend
command: bundle exec rails
web:
<<: *backend
command: bundle exec rails server -b 0.0.0.0
ports:
- '3000:3000'
depends_on:
webpacker:
condition: service_started
sidekiq:
condition: service_started
sidekiq:
<<: *backend
command: bundle exec sidekiq
postgres:
image: postgres:13
volumes:
- ${LOCAL_WORKSPACE_FOLDER:-.}/.dockerdev/.psqlrc:/root/.psqlrc:ro
- postgres:/var/lib/postgresql/data
- history:/usr/local/hist
environment:
PSQL_HISTFILE: /usr/local/hist/.psql_history
POSTGRES_PASSWORD: postgres
ports:
- 5432
healthcheck:
test: pg_isready -U postgres -h 127.0.0.1
interval: 5s
redis:
image: redis:7.0-alpine
volumes:
- redis:/data
ports:
- 6379
healthcheck:
test: redis-cli ping
interval: 1s
timeout: 3s
retries: 30
webpacker:
<<: *app
command: bundle exec ./bin/webpack-dev-server
ports:
- '3035:3035'
volumes:
- ${LOCAL_WORKSPACE_FOLDER:-.}:/app:cached
- bundle:/usr/local/bundle
- node_modules:/app/node_modules
- packs:/app/public/packs
- packs-test:/app/public/packs-test
environment:
<<: *env
WEBPACKER_DEV_SERVER_HOST: 0.0.0.0
YARN_CACHE_FOLDER: /app/node_modules/.yarn-cache
chrome:
image: browserless/chrome:latest
ports:
- "3333:3333"
# Mount application source code to support file uploading
# (otherwise Chrome won't be able to find files).
# NOTE: Make sure you use absolute paths in `#attach_file`.
volumes:
- ${LOCAL_WORKSPACE_FOLDER:-.}:/app:cached
environment:
PORT: 3333
CONNECTION_TIMEOUT: 600000
rspec_system:
<<: *backend
depends_on:
chrome:
condition: service_started
volumes:
bundle:
cypress:
node_modules:
history:
rails_cache:
postgres:
redis:
assets:
packs:
packs-test: