-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
87 lines (83 loc) · 1.81 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
75
76
77
78
79
80
81
82
83
84
85
86
87
---
version: '2.2'
# adapted from:
# /~https://github.com/SeleniumHQ/docker-selenium/wiki/Getting-Started-with-Docker-Compose
# template for ansible_inventory.yml
# docker-compose --force-recreate
services:
firefox65:
image: "selenium/node-firefox:3.141.59-iron"
volumes:
- /dev/shm:/dev/shm
depends_on:
- hub
environment:
HUB_HOST: hub
SCREEN_WIDTH: 1334
SCREEN_HEIGHT: 750
SCREEN_DEPTH: 24
http_proxy: ""
https_proxy: ""
no_proxy:
TZ: "Europe/Amsterdam"
restart: always
firefox60:
image: "selenium/node-firefox:3.12.0-cobalt"
volumes:
- /dev/shm:/dev/shm
depends_on:
- hub
environment:
HUB_HOST: hub
SCREEN_WIDTH: 1334
SCREEN_HEIGHT: 750
SCREEN_DEPTH: 24
http_proxy: ""
https_proxy: ""
no_proxy:
TZ: "Europe/Amsterdam"
restart: always
chrome72:
image: "selenium/node-chrome:3.141.59-iron"
volumes:
- /dev/shm:/dev/shm
- ./certs:/etc/ssl/certs
depends_on:
- hub
environment:
HUB_HOST: hub
SCREEN_WIDTH: 1334
SCREEN_HEIGHT: 750
SCREEN_DEPTH: 24
http_proxy: ""
https_proxy: ""
no_proxy:
TZ: "Europe/Amsterdam"
restart: always
chrome63:
image: "selenium/node-chrome:3.8.1-erbium"
volumes:
- /dev/shm:/dev/shm
- ./certs:/etc/ssl/certs
depends_on:
- hub
environment:
HUB_HOST: hub
SCREEN_WIDTH: 1334
SCREEN_HEIGHT: 750
SCREEN_DEPTH: 24
http_proxy: ""
https_proxy: ""
no_proxy:
TZ: "Europe/Amsterdam"
restart: always
hub:
image: selenium/hub:3.141.59-iron
ports:
- "4444:4444"
expose:
- 4444
environment:
JAVA_OPTS: "-Xmx512m"
TZ: "Europe/Amsterdam"
restart: always