JD
Cookie may only be set for the current domain
Size: a a a
JD
JD
IK
JD
JD
JD
JD
JD
JD
JD
JD
DS
BV
c:\selenoid>docker-compose up
Starting selenoid_selenoid_1 ... done Starting selenoid_selenoid-ui_1 ... done Attaching to selenoid_selenoid_1, selenoid_selenoid-ui_1
selenoid_1 | 2020/08/31 07:22:45 [-] [INIT] [Loading configuration files...]
selenoid-ui_1 | 2020/08/31 07:22:46 [INIT] [Listening on :8080]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Loaded configuration from /etc/selenoid/browsers.json]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Video Dir: /opt/selenoid/video]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Logs Dir: /opt/selenoid/logs]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Your Docker API version is 1.40]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Timezone: UTC]
selenoid_1 | 2020/08/31 07:22:47 [-] [INIT] [Listening on :4444]
selenoid-ui_1 | 2020/08/31 07:23:00 Client added. 1 registered clients
selenoid-ui_1 | 2020/08/31 07:23:04 [ERROR] [Can't get status: context deadline exceeded]
selenoid_1 | 2020/08/31 07:23:13 [-] [NEW_REQUEST] [unknown] [172.17.0.1]
selenoid_1 | 2020/08/31 07:23:13 [-] [NEW_REQUEST_ACCEPTED] [unknown] [172.17.0.1]
selenoid_1 | 2020/08/31 07:23:13 [3] [LOCATING_SERVICE] [chrome] [85.0]
selenoid_1 | 2020/08/31 07:23:13 [3] [USING_DOCKER] [chrome] [85.0]
selenoid_1 | 2020/08/31 07:23:13 [3] [CREATING_CONTAINER] [selenoid/vnc_chrome:85.0]
selenoid_1 | 2020/08/31 07:23:13 [3] [STARTING_CONTAINER] [selenoid/vnc_chrome:85.0] [50258692de3dfc6da4791fdb5e70643c55de4fb7fa06ec19453e6beed9c6c71a]
selenoid_1 | 2020/08/31 07:23:13 [3] [CONTAINER_STARTED] [selenoid/vnc_chrome:85.0] [50258692de3dfc6da4791fdb5e70643c55de4fb7fa06ec19453e6beed9c6c71a] [0.19s]
selenoid_1 | 2020/08/31 07:25:13 [3] [REMOVING_CONTAINER] [50258692de3dfc6da4791fdb5e70643c55de4fb7fa06ec19453e6beed9c6c71a]
selenoid_1 | 2020/08/31 07:25:14 [3] [CONTAINER_REMOVED] [50258692de3dfc6da4791fdb5e70643c55de4fb7fa06ec19453e6beed9c6c71a]
selenoid_1 | 2020/08/31 07:25:14 [3] [SERVICE_STARTUP_FAILED] [wait: http://172.17.0.4: does not respond in 2m0s]
version: '3'
services:
selenoid:
network_mode: bridge
image: aerokube/selenoid:latest-release
volumes:
- "/c/selenoid/config:/etc/selenoid"
- "/var/run/docker.sock:/var/run/docker.sock"
- "/c/selenoid/video:/opt/selenoid/video"
- "/c/selenoid/logs:/opt/selenoid/logs"
environment:
- OVERRIDE_VIDEO_OUTPUT_DIR=/c/selenoid/video
command: [
"-conf", "/etc/selenoid/browsers.json",
"-video-output-dir", "/opt/selenoid/video",
"-log-output-dir", "/opt/selenoid/logs",
"-service-startup-timeout", "2m",
"-session-attempt-timeout","2m"
]
ports:
- "4444:4444"
selenoid-ui:
image: "aerokube/selenoid-ui"
network_mode: bridge
links:
- selenoid
ports:
- "8080:8080"
command: ["--selenoid-uri", "http://selenoid:4444"]
{
"chrome": {
"default": "85.0",
"versions": {
"85.0": {
"image": "selenoid/vnc_chrome:85.0",
"env" : ["LANG=ru_RU.UTF-8", "LANGUAGE=ru:en", "LC_ALL=ru_RU.UTF-8"]
}
}
}
}
DS
- "/var/run/docker.sock:/var/run/docker.sock"
BV
- "/var/run/docker.sock:/var/run/docker.sock"
DS
AM