-
Notifications
You must be signed in to change notification settings - Fork 11
/
docker-compose.yml
52 lines (52 loc) · 1.27 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
version: "3.3"
services:
lb:
image: dockercloud/haproxy
links:
- qrs
# - web
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: always
ports:
- "80:80"
depends_on:
- qrs
- web
mongodb:
image: mongo
container_name: "mongodb"
qrs:
image: qhose/qrsmeteor:20190225-1323
environment:
- MONGO_URL=mongodb://mongodb:27017/
- VIRTUAL_HOST=localqrs
- PORT=3000
- ROOT_URL=http://localqrs
volumes:
- C:\GitHub\QRSMeteor\dockerConfigMountFolder:/meteorQRS/config
ports:
- "3000"
# restart: always
links:
- mongodb
depends_on:
- mongodb
web:
image: qhose/sensewebintegration:20190711-1341
environment:
- VIRTUAL_HOST=localweb
- MONGO_URL=mongodb://mongodb:27017/
- PORT=3030
- ROOT_URL=http://localweb
volumes:
- C:\GitHub\senseWebIntegration\dockerConfigMountFolder:/sensewebintegration/config
ports:
- "3030"
# restart: always
links:
- mongodb
depends_on:
- mongodb
networks:
default: