-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
47 lines (42 loc) · 1 KB
/
compose.yaml
File metadata and controls
47 lines (42 loc) · 1 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
services:
db:
image: postgres:16-alpine
environment:
POSTGRES_DB: cuhk_marketplace_production
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
volumes:
- postgres_data:/var/lib/postgresql/data
ports:
- "5432:5432"
redis:
image: redis:7-alpine
ports:
- "6379:6379"
web:
build: .
environment:
RAILS_ENV: production
DATABASE_URL: postgres://postgres:password@db:5432/cuhk_marketplace_production
REDIS_URL: redis://redis:6379/1
APP_HOST: http://localhost:3000
RAILS_LOG_TO_STDOUT: "1"
depends_on:
- db
- redis
ports:
- "3000:3000"
worker:
build: .
command: bundle exec sidekiq
environment:
RAILS_ENV: production
DATABASE_URL: postgres://postgres:password@db:5432/cuhk_marketplace_production
REDIS_URL: redis://redis:6379/1
APP_HOST: http://localhost:3000
RAILS_LOG_TO_STDOUT: "1"
depends_on:
- db
- redis
volumes:
postgres_data: