first commit
This commit is contained in:
parent
7736a1edea
commit
9e9efb1e7b
98
Dockerfile
Normal file
98
Dockerfile
Normal file
@ -0,0 +1,98 @@
|
||||
# Run Firefox in a container
|
||||
|
||||
FROM debian:jessie
|
||||
MAINTAINER Andrey Arapov <andrey.arapov@nixaid.com>
|
||||
|
||||
# To avoid problems with Dialog and curses wizards
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
# -- Install the prerequisites
|
||||
# adwaita-icon-theme is required so that cursor size is not ultra tiny
|
||||
# gnome-themes-standard and gnome-themes-standard-data are for nice GTK UI
|
||||
RUN sed -i.bak 's/jessie main/jessie main contrib/g' /etc/apt/sources.list \
|
||||
&& apt-get update \
|
||||
&& apt-get install -yq bzip2 libfreetype6 libfontconfig1 \
|
||||
libxrender1 libxext6 libxdamage1 libxcomposite1 libasound2 \
|
||||
libdbus-glib-1-2 libgtk2.0-0 libxt6 libcanberra-gtk-module \
|
||||
pulseaudio \
|
||||
adwaita-icon-theme \
|
||||
gnome-themes-standard gnome-themes-standard-data \
|
||||
flashplugin-nonfree \
|
||||
&& rm -rf /var/lib/apt/lists
|
||||
|
||||
# If you do not want to use pulseaudio
|
||||
# COPY asoundrc /etc/asound.conf
|
||||
# RUN chgrp audio /etc/asound.conf && chmod 0640 /etc/asound.conf
|
||||
|
||||
# -- Adobe Flash Plugin
|
||||
RUN update-flashplugin-nonfree --install
|
||||
|
||||
# -- The Firefox
|
||||
ENV FIREFOX_VER 45.0.1
|
||||
ADD https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VER/linux-x86_64/en-US/firefox-$FIREFOX_VER.tar.bz2 /tmp/firefox.tar.bz2
|
||||
RUN mkdir /opt/mozilla \
|
||||
&& tar xf /tmp/firefox.tar.bz2 -C /opt/mozilla/ \
|
||||
&& rm -f /tmp/firefox.tar.bz2
|
||||
|
||||
# -- Google Hangouts
|
||||
ADD https://dl.google.com/linux/direct/google-talkplugin_current_amd64.deb /tmp/google-talkplugin_current_amd64.deb
|
||||
RUN dpkg -i /tmp/google-talkplugin_current_amd64.deb \
|
||||
&& rm -f /tmp/google-talkplugin_current_amd64.deb
|
||||
|
||||
# -- Java x64 RE plugin
|
||||
# Linux x64 http://javadl.sun.com/webapps/download/AutoDL?BundleId=116021
|
||||
ENV JAVA_VER 8
|
||||
ENV JAVA_JRE_UVER 73
|
||||
ENV JAVA_JRE_FVER 1.8.0_73
|
||||
ENV JAVA_FONTS "/usr/share/fonts/truetype"
|
||||
ENV _JAVA_OPTIONS "-Dawt.useSystemAAFontSettings=on \
|
||||
-Dswing.aatext=true \
|
||||
-Dsun.java2d.xrender=true \
|
||||
-Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel"
|
||||
# ENV _JAVA_AWT_WM_NONREPARENTING 1
|
||||
#
|
||||
# You can pick alternative Java look (swing.defaultlaf=):
|
||||
# - javax.swing.plaf.metal.MetalLookAndFeel
|
||||
# - javax.swing.plaf.nimbus.NimbusLookAndFeel
|
||||
# - com.sun.java.swing.plaf.gtk.GTKLookAndFeel
|
||||
# - com.sun.java.swing.plaf.motif.MotifLookAndFeel
|
||||
ADD http://javadl.sun.com/webapps/download/AutoDL?BundleId=116021 /tmp/jre-linux-x64.tar.gz
|
||||
RUN mkdir -p /opt/java/64 \
|
||||
&& tar xf /tmp/jre-linux-x64.tar.gz -C /opt/java/64/ \
|
||||
&& cd /opt/java/64/ \
|
||||
&& ln -sv jre${JAVA_JRE_FVER} jre \
|
||||
&& ln -sv /opt/java/64/jre/lib/amd64/libnpjp2.so /usr/lib/mozilla/plugins/ \
|
||||
&& update-alternatives --install "/usr/bin/java" "java" "/opt/java/64/jre/bin/java" 1 \
|
||||
&& update-alternatives --set java /opt/java/64/jre/bin/java \
|
||||
&& update-alternatives --install "/usr/bin/javaws" "javaws" "/opt/java/64/jre/bin/javaws" 1 \
|
||||
&& update-alternatives --set javaws /opt/java/64/jre/bin/javaws \
|
||||
&& rm -f /tmp/jre-linux-x64.tar.gz
|
||||
|
||||
# -- Define a user under which the firefox will be running
|
||||
ENV USER firefox
|
||||
ENV UID 1000
|
||||
ENV GROUPS video,audio
|
||||
ENV HOME /home/$USER
|
||||
RUN useradd -u $UID -m -d $HOME -s /usr/sbin/nologin $USER \
|
||||
&& usermod -aG $GROUPS $USER
|
||||
|
||||
# for some unknown reason the ownCloud's (v9.0.0) calendar (v1.0.0.0) doesn't
|
||||
# show up the calendars when the time is set to UTC/Zulu
|
||||
RUN echo "UTC" > /etc/timezone \
|
||||
&& dpkg-reconfigure tzdata
|
||||
|
||||
WORKDIR $HOME
|
||||
USER $USER
|
||||
|
||||
# Allow write to the following directories when the container starts in
|
||||
# in readonly mode
|
||||
RUN mkdir -p $HOME/.cache \
|
||||
$HOME/.config \
|
||||
$HOME/.local \
|
||||
$HOME/.java
|
||||
VOLUME [ "$HOME/.cache", \
|
||||
"$HOME/.config", \
|
||||
"$HOME/.local", \
|
||||
"$HOME/.java", \
|
||||
"/tmp" ]
|
||||
ENTRYPOINT [ "/opt/mozilla/firefox/firefox" ]
|
16
README.md
Normal file
16
README.md
Normal file
@ -0,0 +1,16 @@
|
||||
Readme
|
||||
======
|
||||
|
||||
Launching the firefox
|
||||
```
|
||||
docker-compose up -d
|
||||
```
|
||||
|
||||
Extensions
|
||||
==========
|
||||
|
||||
I have decided to add here a list of the Firefox's extensions I am using
|
||||
```
|
||||
https://www.eff.org/privacybadger
|
||||
https://adblockplus.org/
|
||||
```
|
13
asoundrc
Normal file
13
asoundrc
Normal file
@ -0,0 +1,13 @@
|
||||
# To find your card
|
||||
# aplay -l
|
||||
# speaker-test -D plughw:CARD=PCH -l 1 -t sine
|
||||
|
||||
# defaults.pcm.!card PCH
|
||||
# defaults.pcm.!device 0
|
||||
# defaults.pcm.!ctl PCH
|
||||
|
||||
# defaults.pcm.card 1
|
||||
# defaults.ctl.card 1
|
||||
|
||||
defaults.pcm.card plughw:PCH
|
||||
defaults.ctl.card plughw:PCH
|
26
docker-compose.yml
Normal file
26
docker-compose.yml
Normal file
@ -0,0 +1,26 @@
|
||||
version: '2'
|
||||
|
||||
services:
|
||||
firefox:
|
||||
build: ./
|
||||
read_only: true
|
||||
networks:
|
||||
- net
|
||||
- pulseaudio
|
||||
devices:
|
||||
- /dev/dri
|
||||
volumes:
|
||||
- /tmp/.X11-unix:/tmp/.X11-unix
|
||||
- /tmp/krb5cc_1000:/tmp/krb5cc_1000:ro
|
||||
- /var/run/cups:/var/run/cups:ro
|
||||
- $HOME/.mozilla:/home/firefox/.mozilla
|
||||
- $HOME/Downloads:/home/firefox/Downloads
|
||||
environment:
|
||||
DISPLAY: unix$DISPLAY
|
||||
PULSE_SERVER: tcp:pulseaudio:4713
|
||||
|
||||
networks:
|
||||
net: {}
|
||||
pulseaudio:
|
||||
external:
|
||||
name: pulseaudio_net
|
Loading…
Reference in New Issue
Block a user