The project is made possible by volunteer contributors who have put in thousands of hours of their own time, and made the source code freely available under the Apache License 2.0.
The Dockerfile is based on selenium/node-chrome-debug. You may execute the container with selenuium-hub together via docker-compose
.
You can more detail from SeleniumHQ/docker-selenium
docker pull uwaylu/node-chrome-debug-sikulix:latest
- build your self via
docker build $PATH
# up container
c_id=$(docker run -d -p 5900:5900 uwaylu/node-chrome-debug-sikulix:latest)
# with tiger-vnc client
vncviewer 127.0.0.1:5900 &> /dev/null &
# if you need to up sikulixIDE
docker exec $c_id sikulix -v
# enter into container
docker exec -it $c_id bash