Skip to content
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.

piopi/cypress-desktop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cypress Docker Desktop Docker Image CI

Overview

A Dockerized Cypress Image with an integrated light-weight desktop environment.

noVNC view of the Container running

The Image comes with noVNC to allow user to view the desktop environment with their browsers.

Two type of images are provided:

Image Default Description Monthly pulls
piopirahl/cypress-desktop-base piopirahl/cypress-desktop-base:cypress8.2.0 Cypress with the desktop environment only.
piopirahl/cypress-desktop-browsers piopirahl/cypress-desktop-browsers:all-1.0.5 Cypress with the desktop environment and with one or multiple browsers. The tag all-x.x.x include all 3 browsers (Chrome, Firefox and Edge).

Usage

With the base Image:

docker run -d -p 6901:6901 -p 5901:5901 -v $PWD:/src/cypress piopirahl/cypress-desktop-base:cypress6.7.1

With the Browser Image:

docker run -d -p 6901:6901 -p 5901:5901 -v $PWD:/src/cypress piopirahl/cypress-desktop-browsers:all-1.0.1

You will be able to access the noVNC windows at http://localhost:6901 or use your VNC viewer with localhost:5901

Ports

6901 is exposed by default for the noVNC.

5901 is exposed by default for VNC.

Volumes Binding

To share your cypress host files with the container, you need to bind the host volume with /src on the container. This is the location where Cypress files/configuration reside on the container. E.g: -v $PWD:/src

Custom configs

The config files are stored under /home/docker/.config on the container. In order, to save on your host your configs, you can follow those steps:

  1. Run the docker image to generate the configs on the container
docker run -d -p 6901:6901 -p 5901:5901 --name cypressDesktop piopirahl/cypress-desktop:1.0.3 
  1. Copy the content of the container on the host
mkdir config
docker cp desktop:/home/docker/.config  $PWD/config
  1. Stop the running container and start a new one with a mounted volume

    docker rm -f desktop
    docker run -d -p 6901:6901 -p 5901:5901 --name desktop -v $PWD/config/.config:/home/docker/.config piopirahl/docker-desktop:1.0.1 
    
  2. Now your local configs will be saved on your host machine

Sudo password

The default username in the container is docker and you can use sudo without the need of a password.

DockerHub

DockerHub link of the images:

Image Contents

  • Xvfb - X11 in a virtual framebuffer
  • TigerVNC - A VNC server that scrapes the above X11 server
  • noNVC - A HTML5 canvas vnc viewer
  • xfce4 - a small desktop environment
  • Cypress- Testing tool

Maintainers

Mostapha El Sabah Piopi

About

A Dockerized Cypress Image with an integrated light-weight desktop environment. Include all 3 browsers ( Edge, Firefox, Chrome).

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published