-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Hi,
I was trying to use this image for browsing to a dated website (with java). I used the script found in this github:
#!/bin/bash
URL=$1
docker run -ti
--name "firefox-test"
-v "$PWD/.ff_profile:/home/firefox/.mozilla/firefox"
-v "${HOME}/Downloads:/home/firefox/Downloads:rw"
-v "/tmp/.X11-unix:/tmp/.X11-unix"
-e "DISPLAY=unix${DISPLAY}"
-e "uid=$(id -u)"
-e "gid=$(id -g)"
-e "URL=${URL}"
ugrawert/firefox-java
But nothing started, no ouput, nothing in logfile or in docker logs. Docker ps just says:
$ docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
34683a74ae35 ugrawert/firefox-java "/start-firefox.sh" 4 seconds ago Exited (139) 3 seconds ago firefox-test
I tried browsing to several sites but nothing worked.