Firefox en un contenedor
Find a file
2023-06-06 09:11:43 +02:00
config empty default profile and cache for firefox 2021-03-12 02:50:12 +01:00
Dockerfile Ajuste libreria libasound2 2023-06-06 09:11:43 +02:00
README.md Ajuste scripts 2023-06-06 08:54:21 +02:00

firefox-docker

BUILD IMAGE

docker build --tag firefox:$(grep 'VERSION' Dockerfile |awk '{print $3}') .

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

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

It is not necessary to invoke Firefox, it is launched automatically when executing the container

Luisgulo (soloconlinux.org.es)