https://github.com/albertoimpl/docker-firefox-latest-xvfb
Docker image with for the latest Firefox in Debian with XVFB and Java 8.
https://github.com/albertoimpl/docker-firefox-latest-xvfb
Last synced: 3 months ago
JSON representation
Docker image with for the latest Firefox in Debian with XVFB and Java 8.
- Host: GitHub
- URL: https://github.com/albertoimpl/docker-firefox-latest-xvfb
- Owner: Albertoimpl
- License: apache-2.0
- Created: 2017-05-24T16:33:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-24T16:35:14.000Z (almost 9 years ago)
- Last Synced: 2025-03-17T11:50:53.173Z (about 1 year ago)
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-firefox-latest-xvfb
This dockerfile contains the steps to create an image with the latest firefox and a virtual display for CI.
DockerHub: https://hub.docker.com/r/albertoimpl/firefox-latest-xvfb/
In your CI script do not forget to attach the screen with the following commands:
~~~~
Xvfb -ac :0 -screen 0 1280x1024x16 &
trap 'killall -9 Xvfb' EXIT
~~~~