diff --git a/README.md b/README.md index 5d642c8..616e0e2 100644 --- a/README.md +++ b/README.md @@ -5,21 +5,23 @@ docker build --tag firefox:$(grep 'VERSION' Dockerfile |awk '{print $3}') . -Re-Tag image: +**RE-TAG IMAGE** docker tag firefox:$(grep 'VERSION' Dockerfile |awk '{print $3}') firefox:latest **LAUNCH FIREFOX** -To launch Firefox from the container run the command: -~~~ +To launch Firefox from the container run the command RUN from local image (your build): +~~~ docker run -ti --rm -e DISPLAY=$DISPLAY.0 -v /tmp/.X11-unix:/tmp/.X11-unix firefox:latest +~~~ RUN from my image (my build): +~~~ docker run -ti --rm -e DISPLAY=$DISPLAY.0 -v /tmp/.X11-unix:/tmp/.X11-unix luisgutierrez/firefox:latest ~~~