-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
78 lines (74 loc) · 1.75 KB
/
docker-compose.yml
File metadata and controls
78 lines (74 loc) · 1.75 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
version: "3.9"
services:
rabbitmq:
image: rabbitmq:3-management
container_name: rabbitmq
environment:
RABBITMQ_DEFAULT_USER: guest
RABBITMQ_DEFAULT_PASS: guest
ports:
- "5672:5672"
- "15672:15672"
healthcheck:
test: ["CMD", "rabbitmq-diagnostics", "ping"]
interval: 10s
retries: 5
start_period: 10s
timeout: 5s
networks:
- default
db:
image: postgres:13
container_name: postgres_db
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
POSTGRES_DB: ecommerce_db
ports:
- "5432:5432"
networks:
- default
healthcheck:
test: ["CMD", "pg_isready", "-U", "postgres"]
interval: 10s
retries: 5
start_period: 10s
timeout: 5s
app:
image: ruby:3.2.1
container_name: ruby_app
build:
context: .
dockerfile: Dockerfile
command: ["sh", "-c", "sleep 10 && bundle exec rails server -b 0.0.0.0 -p 3001"]
depends_on:
rabbitmq:
condition: service_healthy
db:
condition: service_healthy
environment:
DATABASE_URL: postgres://postgres:password@db:5432/ecommerce_db
RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672
ports:
- "3001:3001"
networks:
- default
sidekiq:
build:
context: .
dockerfile: Dockerfile
container_name: sidekiq
command: ["sh", "-c", "sleep 10 && bundle exec sidekiq"]
depends_on:
rabbitmq:
condition: service_healthy
db:
condition: service_healthy
environment:
DATABASE_URL: postgres://postgres:password@db:5432/ecommerce_db
RABBITMQ_URL: amqp://guest:guest@rabbitmq:5672
networks:
- default
networks:
default:
driver: bridge