-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocker-compose.yml
52 lines (46 loc) · 957 Bytes
/
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
version: "2"
services:
postgres:
extends:
file: common.yml
service: postgres
volumes:
- /srv/postgres:/var/lib/postgresql/data
mongodb:
extends:
file: common.yml
service: mongodb
volumes:
- /srv/mongodb/db:/data/db
redis:
extends:
file: common.yml
service: redis
ghmodel:
extends:
file: common.yml
service: ghmodel
web:
image: ghrecommender/ghrecommender
depends_on:
- postgres
- mongodb
- redis
- ghmodel
env_file:
- ./.envs/prod.env
entrypoint: wait-for-it.sh postgres:5432 --timeout=60 --
command: sh docker-entrypoint.sh
nginx:
extends:
file: common.yml
service: nginx
depends_on:
- web
volumes:
- ./conf/default.conf:/etc/nginx/conf.d/default.conf:ro
- ./conf/nginx.conf:/etc/nginx/nginx.conf:ro
volumes_from:
- web:ro
ports:
- 80:80