-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (42 loc) · 901 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
version: '3.8'
networks:
selenoid:
name: selenoid
services:
selenoid:
container_name: selenoid
image: aerokube/selenoid:latest-release
volumes:
- $PWD:/etc/selenoid
- /var/run/docker.sock:/var/run/docker.sock
command:
[
'-conf',
'/etc/selenoid/browsers.json',
'-service-startup-timeout',
'5m0s',
'-session-attempt-timeout',
'5m0s',
'-session-delete-timeout',
'5m0s',
'-timeout',
'5m0s',
'-container-network',
'selenoid',
]
ports:
- 4444:4444
networks:
- selenoid
selenoid-ui:
container_name: selenoid-ui
image: aerokube/selenoid-ui:latest-release
depends_on:
- selenoid
links:
- selenoid
command: ['--selenoid-uri', 'http://selenoid:4444']
ports:
- 8081:8080
networks:
- selenoid