-
-
Notifications
You must be signed in to change notification settings - Fork 195
/
docker-compose.yml
74 lines (68 loc) · 1.44 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
version: '3.8'
services:
app:
build:
context: .
dockerfile: docker/Dockerfile
args:
RUBY_VERSION: '${RUBY_VERSION:-3.1}'
tty: true
stdin_open: true
environment:
- BUNDLE_PATH=/bundle/vendor
- DATABASE_URL=postgres://postgres:password@db/
- REDIS_URL=redis://redis:6379
- SMTP_URL=smtp://smtp:1025
ports:
- 3000:3000
volumes:
- ./:/alaveteli
- ../alaveteli-themes:/alaveteli-themes
- bundle:/bundle
depends_on:
- db
- redis
- smtp
sidekiq:
build:
context: .
dockerfile: docker/Dockerfile
args:
RUBY_VERSION: '${RUBY_VERSION:-3.1}'
command: bundle exec sidekiq
volumes:
- ./:/alaveteli
- ../alaveteli-themes:/alaveteli-themes
- bundle:/bundle
environment:
- BUNDLE_PATH=/bundle/vendor
- DATABASE_URL=postgres://postgres:password@db/
- REDIS_URL=redis://redis:6379
- SMTP_URL=smtp://smtp:1025
depends_on:
- db
- redis
- smtp
db:
build:
context: .
dockerfile: docker/Dockerfile-postgres
environment:
- POSTGRES_PASSWORD=password
ports:
- 6432:5432
volumes:
- postgres:/var/lib/postgresql/data
redis:
image: library/redis
command: redis-server
volumes:
- redis:/data
smtp:
image: mailhog/mailhog
ports:
- 1080:8025
volumes:
bundle: {}
postgres: {}
redis: {}