Нет.
Найти не получилось. В логах контейнера единственная ошибка.
[Using default containers log configuration because of: read error: open config/container-logs.json: no such file or directory]
В интернете нашёл единственное решение - использовать версию 3, а не 3,6.
На Гите тоже только версия 3.
...
services:
105--1325-silenium--selenoid:
image: "aerokube/selenoid"
container_name: 105--1325-silenium--selenoid
networks:
- front
- back
volumes:
- type: bind
source: ./selenoid/etc/selenoid
target: /etc/selenoid
- type: bind
source: ./selenoid/config
target: /config
- type: bind
source: /var/run/docker.sock
target: /var/run/docker.sock
- type: bind
source: ./selenoid/opt/video
target: /selenoid/opt/video
environment:
- OVERRIDE_VIDEO_OUTPUT_DIR=$PWD
command: ["-conf", "/etc/selenoid/browsers.json", "-video-output-dir", "/opt/selenoid/video"]
ports:
- "4444:4444"
105--1325-silenium--selenoid-ui:
image: "aerokube/selenoid-ui"
container_name: 105--1325-silenium--selenoid-ui
networks:
- front
- back
depends_on:
- 105--1325-silenium--selenoid
ports:
- "8083:8080"
command: ["--selenoid-uri", "http://105--1325-silenium--selenoid:4444"]
networks:
back:
external:
name: back
front:
external:
name: front