-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdocker-compose-linux.yml
52 lines (52 loc) · 1.31 KB
/
docker-compose-linux.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:2.0.0
environment:
- MONGO_URL=mongodb://mongodb:27017/
- VIRTUAL_HOST=qrs.integration.qlik.com
- PORT=3000
- ROOT_URL=http://qrs.integration.qlik.com
volumes:
- /home/ec2-user/Docker Config folders/QRS config:/meteorQRS/config
ports:
- "80:3000"
restart: always
links:
- mongodb
depends_on:
- mongodb
web:
image: qhose/sensewebintegration:1.0.0
environment:
- VIRTUAL_HOST=web.integration.qlik.com
- MONGO_URL=mongodb://mongodb:27017/
- PORT=3030
- ROOT_URL=http://web.integration.qlik.com
volumes:
- /home/ec2-user/Docker Config folders/Web config:/senseWebIntegration/config
ports:
- "3030:3030"
restart: always
links:
- mongodb
depends_on:
- mongodb
networks:
default: