-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
67 lines (62 loc) · 1.34 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
version: '3.4'
networks:
vuttr:
ipam:
config:
- subnet: 172.72.72.0/24
services:
ci:
container_name: ci
networks:
vuttr:
ipv4_address: 172.72.72.2
volumes:
- ./:/ws
image: node:8.16.0-alpine
working_dir: /ws
entrypoint: /bin/sh -c './build.sh && touch dist.ok'
ports:
- 4000:4000
- 4200:4200
environment:
- APP_URL=http://172.72.72.2:4200
- VUE_APP_API=http://172.72.72.2:4000
- HOST=0.0.0.0
- PORT=4200
- TZ=BRT3BRST,M11.1.6/23:59:59,M2.3.6/23:59:59
hub:
container_name: hub
image: selenium/hub:2.53.1-beryllium
environment:
- TZ=BRT3BRST,M11.1.6/23:59:59,M2.3.6/23:59:59
ports:
- 4444:4444
networks:
vuttr:
ipv4_address: 172.72.72.3
firefox:
container_name: firefox
image: selenium/node-firefox:2.53.1-beryllium
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- TZ=BRT3BRST,M11.1.6/23:59:59,M2.3.6/23:59:59
ports:
- 9000
depends_on:
- ci
networks:
vuttr:
ipv4_address: 172.72.72.4
chrome:
container_name: chrome
image: selenium/node-chrome:2.53.1-beryllium
ports:
- 9000
environment:
- HUB_PORT_4444_TCP_ADDR=hub
- TZ=BRT3BRST,M11.1.6/23:59:59,M2.3.6/23:59:59
depends_on:
- ci
networks:
vuttr:
ipv4_address: 172.72.72.5