mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-01-30 17:13:46 +01:00
convert all spaces to tabs, lets see what breaks
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
de2e5568af
commit
17bbb62b99
|
@ -4,18 +4,18 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
EXPOSE 1049
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
openjdk-6-jre \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ca-certificates \
|
||||
curl \
|
||||
openjdk-6-jre \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
RUN curl -sSL "http://www.polishmywriting.com/download/atd_distribution081310.tgz" -o /tmp/atd.tar.gz \
|
||||
&& mkdir -p /usr/src/atd \
|
||||
&& tar -xzf /tmp/atd.tar.gz -C /usr/src/atd --strip-components 1 \
|
||||
&& rm /tmp/atd.tar.gz*
|
||||
&& mkdir -p /usr/src/atd \
|
||||
&& tar -xzf /tmp/atd.tar.gz -C /usr/src/atd --strip-components 1 \
|
||||
&& rm /tmp/atd.tar.gz*
|
||||
|
||||
WORKDIR /usr/src/atd
|
||||
|
||||
|
|
|
@ -1,22 +1,22 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create the atom editor in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create the atom editor in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build the atom editor
|
||||
# in a container with all dependencies installed.
|
||||
# Note: atom is not a node-webkit app,
|
||||
# found this out a little too late into this example
|
||||
# it uses atom-shell(https://github.com/atom/atom-shell)
|
||||
# Tested on Debian Jessie.
|
||||
# This file describes how to build the atom editor
|
||||
# in a container with all dependencies installed.
|
||||
# Note: atom is not a node-webkit app,
|
||||
# found this out a little too late into this example
|
||||
# it uses atom-shell(https://github.com/atom/atom-shell)
|
||||
# Tested on Debian Jessie.
|
||||
# USAGE:
|
||||
# # Download atom Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/atom/Dockerfile
|
||||
# # Download atom Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/atom/Dockerfile
|
||||
#
|
||||
# # Build atom image
|
||||
# docker build -t atom .
|
||||
# # Build atom image
|
||||
# docker build -t atom .
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY atom
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY atom
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -25,17 +25,17 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
libasound2 \
|
||||
libgconf-2-4 \
|
||||
libgnome-keyring-dev \
|
||||
libgtk2.0-0 \
|
||||
libnss3 \
|
||||
libxtst6 \
|
||||
--no-install-recommends
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
libasound2 \
|
||||
libgconf-2-4 \
|
||||
libgnome-keyring-dev \
|
||||
libgtk2.0-0 \
|
||||
libnss3 \
|
||||
libxtst6 \
|
||||
--no-install-recommends
|
||||
|
||||
# install node
|
||||
RUN curl -sL https://deb.nodesource.com/setup | bash -
|
||||
|
|
|
@ -2,23 +2,23 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
git \
|
||||
qmlscene \
|
||||
qt5-qmake \
|
||||
qt5-default \
|
||||
qtdeclarative5-dev \
|
||||
qml-module-qtquick-controls \
|
||||
qml-module-qtgraphicaleffects \
|
||||
qml-module-qtquick-dialogs \
|
||||
qml-module-qtquick-localstorage \
|
||||
qml-module-qtquick-window2 \
|
||||
--no-install-recommends
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
git \
|
||||
qmlscene \
|
||||
qt5-qmake \
|
||||
qt5-default \
|
||||
qtdeclarative5-dev \
|
||||
qml-module-qtquick-controls \
|
||||
qml-module-qtgraphicaleffects \
|
||||
qml-module-qtquick-dialogs \
|
||||
qml-module-qtquick-localstorage \
|
||||
qml-module-qtquick-window2 \
|
||||
--no-install-recommends
|
||||
|
||||
RUN git clone --recursive https://github.com/Swordfish90/cool-retro-term.git /src
|
||||
WORKDIR /src
|
||||
RUN qmake \
|
||||
&& make
|
||||
&& make
|
||||
|
||||
ENTRYPOINT [ "/src/cool-retro-term" ]
|
||||
|
|
|
@ -8,34 +8,34 @@ ADD https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb /
|
|||
|
||||
# Install Chromium
|
||||
RUN sed -i.bak 's/sid main/sid main contrib non-free/g' /etc/apt/sources.list && \
|
||||
mkdir -p /usr/share/icons/hicolor && \
|
||||
apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
gconf-service \
|
||||
hicolor-icon-theme \
|
||||
libappindicator1 \
|
||||
libasound2 \
|
||||
libcanberra-gtk-module \
|
||||
libcurl3 \
|
||||
libexif-dev \
|
||||
libgconf-2-4 \
|
||||
libgl1-mesa-dri \
|
||||
libgl1-mesa-glx \
|
||||
libnspr4 \
|
||||
libnss3 \
|
||||
libpango1.0-0 \
|
||||
libv4l-0 \
|
||||
libxss1 \
|
||||
libxtst6 \
|
||||
wget \
|
||||
xdg-utils \
|
||||
--no-install-recommends && \
|
||||
dpkg -i '/src/google-chrome-stable_current_amd64.deb' && \
|
||||
apt-get install -y \
|
||||
pepperflashplugin-nonfree \
|
||||
--no-install-recommends && \
|
||||
dpkg -i '/src/google-talkplugin_current_amd64.deb' \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
mkdir -p /usr/share/icons/hicolor && \
|
||||
apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
gconf-service \
|
||||
hicolor-icon-theme \
|
||||
libappindicator1 \
|
||||
libasound2 \
|
||||
libcanberra-gtk-module \
|
||||
libcurl3 \
|
||||
libexif-dev \
|
||||
libgconf-2-4 \
|
||||
libgl1-mesa-dri \
|
||||
libgl1-mesa-glx \
|
||||
libnspr4 \
|
||||
libnss3 \
|
||||
libpango1.0-0 \
|
||||
libv4l-0 \
|
||||
libxss1 \
|
||||
libxtst6 \
|
||||
wget \
|
||||
xdg-utils \
|
||||
--no-install-recommends && \
|
||||
dpkg -i '/src/google-chrome-stable_current_amd64.deb' && \
|
||||
apt-get install -y \
|
||||
pepperflashplugin-nonfree \
|
||||
--no-install-recommends && \
|
||||
dpkg -i '/src/google-talkplugin_current_amd64.deb' \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY local.conf /etc/fonts/local.conf
|
||||
|
||||
|
|
|
@ -1,24 +1,24 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create chromium container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create chromium container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build a Chromium container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build a Chromium container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download Chromium Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/chromium/Dockerfile
|
||||
# # Download Chromium Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/chromium/Dockerfile
|
||||
#
|
||||
# # Build chromium image
|
||||
# docker build -t chromium .
|
||||
# # Build chromium image
|
||||
# docker build -t chromium .
|
||||
#
|
||||
# # Run stateful data-on-host chromium. For ephemeral, remove -v /data/chromium:/data
|
||||
# docker run -v /data/chromium:/data -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY chromium
|
||||
# # Run stateful data-on-host chromium. For ephemeral, remove -v /data/chromium:/data
|
||||
# docker run -v /data/chromium:/data -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY chromium
|
||||
|
||||
# # To run stateful dockerized data containers
|
||||
# docker run --volumes-from chromium-data -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY chromium
|
||||
# # To run stateful dockerized data containers
|
||||
# docker run --volumes-from chromium-data -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY chromium
|
||||
|
||||
# Base docker image
|
||||
FROM debian:jessie
|
||||
|
@ -27,18 +27,18 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
COPY google-talkplugin_current_amd64.deb /src/google-talkplugin_current_amd64.deb
|
||||
# Install Chromium
|
||||
RUN sed -i.bak 's/jessie main/jessie main contrib non-free/g' /etc/apt/sources.list && \
|
||||
apt-get update && apt-get install -y \
|
||||
chromium \
|
||||
chromium-l10n \
|
||||
libcanberra-gtk-module \
|
||||
libexif-dev \
|
||||
libpango1.0-0 \
|
||||
libv4l-0 \
|
||||
pepperflashplugin-nonfree \
|
||||
--no-install-recommends && \
|
||||
mkdir -p /etc/chromium.d/ && \
|
||||
/bin/echo -e 'export GOOGLE_API_KEY="AIzaSyCkfPOPZXDKNn8hhgu3JrA62wIgC93d44k"\nexport GOOGLE_DEFAULT_CLIENT_ID="811574891467.apps.googleusercontent.com"\nexport GOOGLE_DEFAULT_CLIENT_SECRET="kdloedMFGdGla2P1zacGjAQh"' > /etc/chromium.d/googleapikeys && \
|
||||
dpkg -i '/src/google-talkplugin_current_amd64.deb'
|
||||
apt-get update && apt-get install -y \
|
||||
chromium \
|
||||
chromium-l10n \
|
||||
libcanberra-gtk-module \
|
||||
libexif-dev \
|
||||
libpango1.0-0 \
|
||||
libv4l-0 \
|
||||
pepperflashplugin-nonfree \
|
||||
--no-install-recommends && \
|
||||
mkdir -p /etc/chromium.d/ && \
|
||||
/bin/echo -e 'export GOOGLE_API_KEY="AIzaSyCkfPOPZXDKNn8hhgu3JrA62wIgC93d44k"\nexport GOOGLE_DEFAULT_CLIENT_ID="811574891467.apps.googleusercontent.com"\nexport GOOGLE_DEFAULT_CLIENT_SECRET="kdloedMFGdGla2P1zacGjAQh"' > /etc/chromium.d/googleapikeys && \
|
||||
dpkg -i '/src/google-talkplugin_current_amd64.deb'
|
||||
|
||||
# Autorun x11vnc
|
||||
CMD ["/usr/bin/chromium", "--no-sandbox", "--user-data-dir=/data"]
|
||||
|
|
|
@ -8,12 +8,12 @@ ADD https://jesss.s3.amazonaws.com/binaries/consul/${CONSUL_VERSION}/consul /usr
|
|||
ADD https://jesss.s3.amazonaws.com/binaries/curl-unix-socket /usr/local/bin/curl-unix-socket
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
--no-install-recommends \
|
||||
&& mkdir -p /etc/consul.d/ \
|
||||
&& chmod +x /usr/local/bin/consul \
|
||||
&& chmod +x /usr/local/bin/curl-unix-socket \
|
||||
&& chmod +x /usr/local/bin/consul-alerts
|
||||
ca-certificates \
|
||||
curl \
|
||||
--no-install-recommends \
|
||||
&& mkdir -p /etc/consul.d/ \
|
||||
&& chmod +x /usr/local/bin/consul \
|
||||
&& chmod +x /usr/local/bin/curl-unix-socket \
|
||||
&& chmod +x /usr/local/bin/consul-alerts
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/consul-alerts", "start" ]
|
||||
|
|
|
@ -11,8 +11,8 @@ RUN apt-get update && apt-get install -y \
|
|||
ca-certificates \
|
||||
curl \
|
||||
--no-install-recommends \
|
||||
&& mkdir -p /etc/consul.d/ \
|
||||
&& chmod +x /usr/local/bin/consul \
|
||||
&& chmod +x /usr/local/bin/curl-unix-socket
|
||||
&& mkdir -p /etc/consul.d/ \
|
||||
&& chmod +x /usr/local/bin/consul \
|
||||
&& chmod +x /usr/local/bin/curl-unix-socket
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/consul" ]
|
||||
|
|
|
@ -2,26 +2,26 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
debhelper \
|
||||
devscripts \
|
||||
equivs \
|
||||
file \
|
||||
gcc \
|
||||
git \
|
||||
gnupg \
|
||||
libwww-perl \
|
||||
make \
|
||||
patch \
|
||||
patchutils \
|
||||
quilt \
|
||||
silversearcher-ag \
|
||||
tree \
|
||||
vim \
|
||||
xutils-dev \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ca-certificates \
|
||||
curl \
|
||||
debhelper \
|
||||
devscripts \
|
||||
equivs \
|
||||
file \
|
||||
gcc \
|
||||
git \
|
||||
gnupg \
|
||||
libwww-perl \
|
||||
make \
|
||||
patch \
|
||||
patchutils \
|
||||
quilt \
|
||||
silversearcher-ag \
|
||||
tree \
|
||||
vim \
|
||||
xutils-dev \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN printf '\nalias dquilt="quilt --quiltrc=${HOME}/.quiltrc-dpkg"\ncomplete -F _quilt_completion $_quilt_complete_opt dquilt\n' >> /root/.bashrc
|
||||
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based emacs doctor in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based emacs doctor in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build doctor in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build doctor in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download doctor Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/doctor/Dockerfile
|
||||
# # Download doctor Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/doctor/Dockerfile
|
||||
#
|
||||
# # Build doctor image
|
||||
# docker build -t doctor .
|
||||
# # Build doctor image
|
||||
# docker build -t doctor .
|
||||
#
|
||||
# docker run -it doctor
|
||||
# docker run -it doctor
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -21,8 +21,8 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install emacs
|
||||
RUN apt-get update && apt-get install -y \
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
|
||||
# Autorun doctor
|
||||
CMD ["/usr/bin/emacs", "-f", "doctor"]
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based game dunnet in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based game dunnet in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build dunnet in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build dunnet in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download dunnet Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/dunnet/Dockerfile
|
||||
# # Download dunnet Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/dunnet/Dockerfile
|
||||
#
|
||||
# # Build dunnet image
|
||||
# docker build -t dunnet .
|
||||
# # Build dunnet image
|
||||
# docker build -t dunnet .
|
||||
#
|
||||
# docker run -it dunnet
|
||||
# docker run -it dunnet
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -21,8 +21,8 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install emacs
|
||||
RUN apt-get update && apt-get install -y \
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
|
||||
# Autorun dunnet
|
||||
CMD ["/usr/bin/emacs", "-batch", "-l", "dunnet"]
|
||||
|
|
|
@ -2,21 +2,21 @@
|
|||
# DESCRIPTION: Create evince container with its dependencies (https://wiki.gnome.org/Apps/Evince)
|
||||
# AUTHOR: Christian Koep <christian.koep@fom-net.de>
|
||||
# USAGE:
|
||||
# # Build evince image
|
||||
# docker build -t evince .
|
||||
# # Build evince image
|
||||
# docker build -t evince .
|
||||
#
|
||||
# # Run the container and mount your documents
|
||||
# docker run -it \
|
||||
# -v $HOME/documents/:/root/documents/ \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=$DISPLAY \
|
||||
# evince
|
||||
# # Run the container and mount your documents
|
||||
# docker run -it \
|
||||
# -v $HOME/documents/:/root/documents/ \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=$DISPLAY \
|
||||
# evince
|
||||
#
|
||||
|
||||
FROM debian:jessie
|
||||
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
||||
|
||||
RUN apt-get -qq update && apt-get install -y --no-install-recommends \
|
||||
evince
|
||||
evince
|
||||
|
||||
CMD ["/usr/bin/evince"]
|
||||
|
|
|
@ -2,10 +2,10 @@ FROM debian:wheezy
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-key D880C8E4 \
|
||||
&& echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_7.0/ ./' > /etc/apt/sources.list.d/fish-shell.list \
|
||||
&& apt-get update && apt-get install -y \
|
||||
fish \
|
||||
--no-install-recommends \
|
||||
&& mkdir -p /root/.config/fish/completions
|
||||
&& echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_7.0/ ./' > /etc/apt/sources.list.d/fish-shell.list \
|
||||
&& apt-get update && apt-get install -y \
|
||||
fish \
|
||||
--no-install-recommends \
|
||||
&& mkdir -p /root/.config/fish/completions
|
||||
|
||||
ENTRYPOINT [ "fish" ]
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
geary \
|
||||
--no-install-recommends
|
||||
geary \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "geary" ]
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# Run gimp in a contianer
|
||||
#
|
||||
# docker run -d \
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# -v $HOME/Pictures:/root/Pictures \
|
||||
# --name gimp \
|
||||
# jess/gimp
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# -v $HOME/Pictures:/root/Pictures \
|
||||
# --name gimp \
|
||||
# jess/gimp
|
||||
#
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
gimp \
|
||||
--no-install-recommends
|
||||
gimp \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "gimp" ]
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# To use:
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY --device /dev/dri jess/glxgears
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY --device /dev/dri jess/glxgears
|
||||
# Base docker image
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
# Install all the things
|
||||
RUN apt-get update && apt-get install -y \
|
||||
mesa-utils \
|
||||
--no-install-recommends
|
||||
mesa-utils \
|
||||
--no-install-recommends
|
||||
|
||||
ENV LIBGL_DEBUG verbose
|
||||
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create gparted container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create gparted container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build a gparted container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build a gparted container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download gparted Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/gparted/Dockerfile
|
||||
# # Download gparted Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/gparted/Dockerfile
|
||||
#
|
||||
# # Build gparted image
|
||||
# docker build -t gparted .
|
||||
# # Build gparted image
|
||||
# docker build -t gparted .
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# --device=/dev/sda:/dev/sda \
|
||||
# -e DISPLAY=unix$DISPLAY gparted
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# --device=/dev/sda:/dev/sda \
|
||||
# -e DISPLAY=unix$DISPLAY gparted
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -23,10 +23,10 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install Gparted and its dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
dosfstools \
|
||||
gparted \
|
||||
libcanberra-gtk-module \
|
||||
--no-install-recommends
|
||||
dosfstools \
|
||||
gparted \
|
||||
libcanberra-gtk-module \
|
||||
--no-install-recommends
|
||||
|
||||
# Autorun gparted
|
||||
CMD ["/usr/sbin/gparted"]
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
icedove \
|
||||
--no-install-recommends
|
||||
icedove \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "icedove" ]
|
||||
|
|
|
@ -2,13 +2,13 @@ FROM debian:sid
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN sed -i.bak 's/sid main/sid main contrib/g' /etc/apt/sources.list && \
|
||||
apt-get update && apt-get install -y \
|
||||
flashplugin-nonfree \
|
||||
hicolor-icon-theme \
|
||||
iceweasel \
|
||||
libgl1-mesa-dri \
|
||||
libgl1-mesa-glx \
|
||||
--no-install-recommends
|
||||
apt-get update && apt-get install -y \
|
||||
flashplugin-nonfree \
|
||||
hicolor-icon-theme \
|
||||
iceweasel \
|
||||
libgl1-mesa-dri \
|
||||
libgl1-mesa-glx \
|
||||
--no-install-recommends
|
||||
|
||||
COPY local.conf /etc/fonts/local.conf
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:sid
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
imagemagick \
|
||||
--no-install-recommends
|
||||
imagemagick \
|
||||
--no-install-recommends
|
||||
|
||||
CMD [ "imagemagick" ]
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
# Run imagemin in a container:
|
||||
#
|
||||
# docker run --rm -it \
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v $HOME/Pictures:/root/Pictures \
|
||||
# --entrypoint bash \
|
||||
# jess/imagemin
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v $HOME/Pictures:/root/Pictures \
|
||||
# --entrypoint bash \
|
||||
# jess/imagemin
|
||||
#
|
||||
FROM node
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Run inkscape in a container
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -v /inkscape/:/workspace \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# infoslack/inkscape
|
||||
# -v /inkscape/:/workspace \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# infoslack/inkscape
|
||||
#
|
||||
FROM ubuntu:14.04
|
||||
MAINTAINER Daniel Romero <infoslack@gmail.com>
|
||||
|
@ -11,13 +11,13 @@ MAINTAINER Daniel Romero <infoslack@gmail.com>
|
|||
ENV DEBIAN_FRONTEND noninteractive
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
python-software-properties \
|
||||
software-properties-common
|
||||
python-software-properties \
|
||||
software-properties-common
|
||||
|
||||
RUN add-apt-repository ppa:inkscape.dev/stable && \
|
||||
apt-get update && \
|
||||
apt-get install -y -qq --no-install-recommends inkscape && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
apt-get update && \
|
||||
apt-get install -y -qq --no-install-recommends inkscape && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
VOLUME /workspace
|
||||
WORKDIR /workspace
|
||||
|
|
|
@ -5,11 +5,11 @@ RUN pip install -U numpy
|
|||
|
||||
# install linear algebra dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
gfortran \
|
||||
libopenblas-dev \
|
||||
liblapack-dev \
|
||||
libzmq-dev \
|
||||
--no-install-recommends
|
||||
gfortran \
|
||||
libopenblas-dev \
|
||||
liblapack-dev \
|
||||
libzmq-dev \
|
||||
--no-install-recommends
|
||||
RUN pip install -U scipy
|
||||
|
||||
RUN pip install -U matplotlib
|
||||
|
|
|
@ -2,22 +2,22 @@
|
|||
# DESCRIPTION: Create keepass2 container with its dependencies
|
||||
# AUTHOR: Christian Koep <christian.koep@fom-net.de>
|
||||
# USAGE:
|
||||
# # Build keepass2 image
|
||||
# docker build -t keepass2 .
|
||||
# # Build keepass2 image
|
||||
# docker build -t keepass2 .
|
||||
#
|
||||
# # Run the container and mount your keepass2 database file
|
||||
# docker run -it -v /home/$USER/DB.kdbx:/root/DB.kdbx -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY keepass2
|
||||
# # Run the container and mount your keepass2 database file
|
||||
# docker run -it -v /home/$USER/DB.kdbx:/root/DB.kdbx -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=$DISPLAY keepass2
|
||||
#
|
||||
# ISSUES:
|
||||
# # 'Gtk: cannot open display: :0'
|
||||
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
|
||||
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
|
||||
# # 'Gtk: cannot open display: :0'
|
||||
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
|
||||
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
|
||||
#
|
||||
|
||||
FROM debian:jessie
|
||||
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
||||
ENV DEBIAN_FRONTEND noninteractiv
|
||||
RUN apt-get update && apt-get install -y \
|
||||
keepass2 \
|
||||
xdotool
|
||||
keepass2 \
|
||||
xdotool
|
||||
CMD ["/usr/bin/keepass2"]
|
||||
|
|
|
@ -2,12 +2,12 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
kernel-package \
|
||||
make \
|
||||
libncurses5-dev \
|
||||
--no-install-recommends
|
||||
ca-certificates \
|
||||
curl \
|
||||
kernel-package \
|
||||
make \
|
||||
libncurses5-dev \
|
||||
--no-install-recommends
|
||||
|
||||
ENV HOME /root
|
||||
WORKDIR $HOME
|
||||
|
@ -16,17 +16,17 @@ ENV JOBS 2
|
|||
|
||||
# add install_kernel helper func
|
||||
RUN { \
|
||||
echo '\ninstall_kernel(){'; \
|
||||
echo '\tlocal VERSION=$1'; \
|
||||
echo '\n\tif [[ -z $VERSION ]]; then'; \
|
||||
echo '\t\techo "Please specify a kernel version."'; \
|
||||
echo '\t\texit 1'; \
|
||||
echo '\tfi\n'; \
|
||||
echo '\tlocal MAJOR_VERSION=${VERSION:0:1}'; \
|
||||
echo '\n\t[ -d /usr/src/linux-${VERSION} ] || curl -sSL https://www.kernel.org/pub/linux/kernel/v${MAJOR_VERSION}.x/linux-${VERSION}.tar.xz | tar -v -C /usr/src -xJ'; \
|
||||
echo '\n\tcd /usr/src/linux-${VERSION}'; \
|
||||
echo '\n\tnice -19 make -j$JOBS KDEB_PKGVERSION=$PKGVERSION INSTALL_MOD_STRIP=1 deb-pkg'; \
|
||||
echo '}'; \
|
||||
} >> ~/.bashrc
|
||||
echo '\ninstall_kernel(){'; \
|
||||
echo '\tlocal VERSION=$1'; \
|
||||
echo '\n\tif [[ -z $VERSION ]]; then'; \
|
||||
echo '\t\techo "Please specify a kernel version."'; \
|
||||
echo '\t\texit 1'; \
|
||||
echo '\tfi\n'; \
|
||||
echo '\tlocal MAJOR_VERSION=${VERSION:0:1}'; \
|
||||
echo '\n\t[ -d /usr/src/linux-${VERSION} ] || curl -sSL https://www.kernel.org/pub/linux/kernel/v${MAJOR_VERSION}.x/linux-${VERSION}.tar.xz | tar -v -C /usr/src -xJ'; \
|
||||
echo '\n\tcd /usr/src/linux-${VERSION}'; \
|
||||
echo '\n\tnice -19 make -j$JOBS KDEB_PKGVERSION=$PKGVERSION INSTALL_MOD_STRIP=1 deb-pkg'; \
|
||||
echo '}'; \
|
||||
} >> ~/.bashrc
|
||||
|
||||
CMD [ "bash" ]
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libreoffice \
|
||||
--no-install-recommends
|
||||
libreoffice \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "libreoffice" ]
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
lynx \
|
||||
--no-install-recommends
|
||||
lynx \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "lynx" ]
|
||||
|
|
|
@ -9,11 +9,11 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
RUN apt-get update && apt-get install -y \
|
||||
lighttpd \
|
||||
mailman \
|
||||
postfix \
|
||||
supervisor \
|
||||
--no-install-recommends
|
||||
lighttpd \
|
||||
mailman \
|
||||
postfix \
|
||||
supervisor \
|
||||
--no-install-recommends
|
||||
|
||||
# Lighttpd configuration
|
||||
ADD lighttpd.conf /etc/lighttpd/lighttpd.conf
|
||||
|
|
|
@ -2,24 +2,24 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
gcc \
|
||||
git \
|
||||
libncurses5 \
|
||||
libncurses5-dev \
|
||||
libncursesw5 \
|
||||
libncursesw5-dev \
|
||||
make \
|
||||
--no-install-recommends
|
||||
ca-certificates \
|
||||
gcc \
|
||||
git \
|
||||
libncurses5 \
|
||||
libncurses5-dev \
|
||||
libncursesw5 \
|
||||
libncursesw5-dev \
|
||||
make \
|
||||
--no-install-recommends
|
||||
|
||||
RUN git clone --recursive https://github.com/visit1985/mdp.git /src
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
ENV TERM xterm-256color
|
||||
ENV DEBUG 1
|
||||
ENV TERM xterm-256color
|
||||
ENV DEBUG 1
|
||||
|
||||
RUN make \
|
||||
&& make install
|
||||
&& make install
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/mdp" ]
|
||||
|
|
|
@ -4,9 +4,9 @@ RUN groupadd -g 1000 user \
|
|||
&& useradd --create-home -d /home/user -g user -u 1000 user
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
git \
|
||||
mutt-patched
|
||||
ca-certificates \
|
||||
git \
|
||||
mutt-patched
|
||||
|
||||
# a browser is necessary!
|
||||
RUN apt-get update && apt-get install -y lynx
|
||||
|
@ -23,13 +23,13 @@ RUN mkdir -p $HOME/.mutt/cache/headers $HOME/.mutt/cache/bodies \
|
|||
|
||||
# vim settings
|
||||
RUN git clone https://github.com/jfrazelle/.vim.git $HOME/.vim \
|
||||
&& git clone https://github.com/altercation/vim-colors-solarized $HOME/.vim/bundle/vim-colors-solarized \
|
||||
&& cp $HOME/.vim/vimrc.txt $HOME/.vimrc
|
||||
&& git clone https://github.com/altercation/vim-colors-solarized $HOME/.vim/bundle/vim-colors-solarized \
|
||||
&& cp $HOME/.vim/vimrc.txt $HOME/.vimrc
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
COPY .mutt $HOME/.mutt
|
||||
COPY entrypoint.sh /entrypoint.sh
|
||||
COPY .mutt $HOME/.mutt
|
||||
|
||||
ENTRYPOINT ["/entrypoint.sh"]
|
||||
|
||||
|
|
|
@ -2,14 +2,14 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
cowsay \
|
||||
curl \
|
||||
figlet \
|
||||
imagemagick \
|
||||
jp2a \
|
||||
python \
|
||||
--no-install-recommends
|
||||
ca-certificates \
|
||||
cowsay \
|
||||
curl \
|
||||
figlet \
|
||||
imagemagick \
|
||||
jp2a \
|
||||
python \
|
||||
--no-install-recommends
|
||||
|
||||
ENV HOME /root
|
||||
WORKDIR $HOME
|
||||
|
|
|
@ -2,11 +2,11 @@ FROM python:latest
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libjpeg-dev \
|
||||
libfreetype6 \
|
||||
libfreetype6-dev \
|
||||
zlib1g-dev \
|
||||
--no-install-recommends
|
||||
libjpeg-dev \
|
||||
libfreetype6 \
|
||||
libfreetype6-dev \
|
||||
zlib1g-dev \
|
||||
--no-install-recommends
|
||||
|
||||
RUN pip install rainbowstream
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libgssapi-krb5-2 \
|
||||
rdesktop \
|
||||
--no-install-recommends
|
||||
rdesktop \
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "rdesktop" ]
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
# Run remmina in a container
|
||||
#
|
||||
# docker run -d \
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# -v $HOME/.remmina:/root/.remmina \
|
||||
# --name remmina \
|
||||
# jess/remmina
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# -v $HOME/.remmina:/root/.remmina \
|
||||
# --name remmina \
|
||||
# jess/remmina
|
||||
#
|
||||
FROM ubuntu:14.10
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
@ -17,8 +17,8 @@ RUN apt-get update && apt-get install -y \
|
|||
apt-add-repository ppa:remmina-ppa-team/remmina-next && \
|
||||
apt-get update && apt-get install -y \
|
||||
hicolor-icon-theme \
|
||||
remmina \
|
||||
remmina \
|
||||
remmina-plugin-rdp \
|
||||
--no-install-recommends
|
||||
--no-install-recommends
|
||||
|
||||
ENTRYPOINT [ "remmina" ]
|
||||
|
|
|
@ -2,9 +2,9 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
ca-certificates \
|
||||
curl \
|
||||
--no-install-recommends \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/rust/rustc/bin
|
||||
|
|
|
@ -2,17 +2,17 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
g++ \
|
||||
libpq5 \
|
||||
libpq-dev \
|
||||
libxml2-dev \
|
||||
locales \
|
||||
postgresql-client-9.4 \
|
||||
postgresql-client-common \
|
||||
python \
|
||||
python-dev \
|
||||
python-pip \
|
||||
--no-install-recommends
|
||||
g++ \
|
||||
libpq5 \
|
||||
libpq-dev \
|
||||
libxml2-dev \
|
||||
locales \
|
||||
postgresql-client-9.4 \
|
||||
postgresql-client-common \
|
||||
python \
|
||||
python-dev \
|
||||
python-pip \
|
||||
--no-install-recommends
|
||||
|
||||
# locales
|
||||
ENV LANGUAGE en_US.UTF-8
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
# Run skype in a container
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -v /dev/snd:/dev/snd \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/skype
|
||||
# -v /dev/snd:/dev/snd \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/skype
|
||||
#
|
||||
FROM debian:jessie
|
||||
|
||||
|
@ -13,15 +13,15 @@ ENV DEBIAN_FRONTEND noninteractive
|
|||
# Setup multiarch because Skype is 32bit only
|
||||
# Make sure the repository information is up to date
|
||||
RUN dpkg --add-architecture i386 && \
|
||||
apt-get update && apt-get install -y \
|
||||
curl \
|
||||
--no-install-recommends
|
||||
apt-get update && apt-get install -y \
|
||||
curl \
|
||||
--no-install-recommends
|
||||
|
||||
|
||||
# Install Skype
|
||||
RUN curl http://download.skype.com/linux/skype-debian_4.3.0.37-1_i386.deb > /usr/src/skype.deb && \
|
||||
dpkg -i /usr/src/skype.deb || true && \
|
||||
apt-get install -fy
|
||||
dpkg -i /usr/src/skype.deb || true && \
|
||||
apt-get install -fy
|
||||
|
||||
# Start Skype
|
||||
ENTRYPOINT ["skype"]
|
||||
|
|
|
@ -14,15 +14,15 @@ FROM ubuntu:14.04
|
|||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
dbus-x11 \
|
||||
dunst \
|
||||
hunspell-en-us \
|
||||
python3-dbus \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
apt-add-repository -y ppa:rael-gc/scudcloud && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
scudcloud
|
||||
dbus-x11 \
|
||||
dunst \
|
||||
hunspell-en-us \
|
||||
python3-dbus \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
apt-add-repository -y ppa:rael-gc/scudcloud && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
scudcloud
|
||||
|
||||
ENTRYPOINT ["/usr/bin/scudcloud"]
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
# Run spotify windows app in a container with wine
|
||||
#
|
||||
# docker run --rm -it \
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# --cpuset-cpus 0 \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# --device /dev/snd:/dev/snd \
|
||||
# --name spotify-wine \
|
||||
# jess/spotify-wine bash
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# --cpuset-cpus 0 \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# --device /dev/snd:/dev/snd \
|
||||
# --name spotify-wine \
|
||||
# jess/spotify-wine bash
|
||||
#
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
@ -16,12 +16,12 @@ MAINTAINER Jessie Frazelle <jess@linux.com>
|
|||
# and iceweasel since we have to sign in w facebook
|
||||
# GROSS
|
||||
RUN apt-get update && apt-get install -y \
|
||||
wine \
|
||||
--no-install-recommends && \
|
||||
dpkg --add-architecture i386 && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
wine32
|
||||
wine \
|
||||
--no-install-recommends && \
|
||||
dpkg --add-architecture i386 && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
wine32
|
||||
|
||||
COPY ./SpotifySetup.exe /usr/src/SpotifySetup.exe
|
||||
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
# Run spotify in a container
|
||||
#
|
||||
# docker run -d \
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# --device /dev/snd:/dev/snd \
|
||||
# -v $HOME/.spotify/config:/root/.config/spotify \
|
||||
# -v $HOME/.spotify/cache:/root/.cache/spotify \
|
||||
# --name spotify \
|
||||
# jess/spotify
|
||||
# -v /etc/localtime:/etc/localtime:ro \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# --device /dev/snd:/dev/snd \
|
||||
# -v $HOME/.spotify/config:/root/.config/spotify \
|
||||
# -v $HOME/.spotify/cache:/root/.cache/spotify \
|
||||
# --name spotify \
|
||||
# jess/spotify
|
||||
#
|
||||
FROM ubuntu:14.04
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
libpangoxft-1.0-0 \
|
||||
alsa-utils \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 && \
|
||||
echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
spotify-client
|
||||
libpangoxft-1.0-0 \
|
||||
alsa-utils \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 && \
|
||||
echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
spotify-client
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/spotify" ]
|
||||
ENTRYPOINT [ "/usr/bin/spotify" ]
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create SimpleScreenRecorder in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create SimpleScreenRecorder in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build SimpleScreenRecoder
|
||||
# in a container with all dependencies installed.
|
||||
# Tested on Debian Jessie.
|
||||
# This file describes how to build SimpleScreenRecoder
|
||||
# in a container with all dependencies installed.
|
||||
# Tested on Debian Jessie.
|
||||
# USAGE:
|
||||
# # Download ssr Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/ssr/Dockerfile
|
||||
# # Download ssr Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/ssr/Dockerfile
|
||||
#
|
||||
# # Build ssr image
|
||||
# docker build -t ssr .
|
||||
# # Build ssr image
|
||||
# docker build -t ssr .
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY ssr
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY ssr
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -22,42 +22,42 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install dependencies
|
||||
RUN dpkg --add-architecture i386 && apt-get update && apt-get install -y \
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
git \
|
||||
pkg-config \
|
||||
qt4-qmake \
|
||||
libqt4-dev \
|
||||
libavformat-dev \
|
||||
libavcodec-dev \
|
||||
libavutil-dev \
|
||||
libswscale-dev \
|
||||
libasound2-dev \
|
||||
libpulse-dev \
|
||||
libjack-jackd2-dev \
|
||||
libgl1-mesa-dev \
|
||||
libglu1-mesa-dev \
|
||||
libx11-dev \
|
||||
libxfixes-dev \
|
||||
libxext-dev \
|
||||
libxi-dev \
|
||||
g++-multilib \
|
||||
libx11-6 \
|
||||
libxext6 \
|
||||
libxfixes3 \
|
||||
libxfixes3:i386 \
|
||||
libglu1-mesa:i386 \
|
||||
sudo \
|
||||
--no-install-recommends
|
||||
build-essential \
|
||||
ca-certificates \
|
||||
git \
|
||||
pkg-config \
|
||||
qt4-qmake \
|
||||
libqt4-dev \
|
||||
libavformat-dev \
|
||||
libavcodec-dev \
|
||||
libavutil-dev \
|
||||
libswscale-dev \
|
||||
libasound2-dev \
|
||||
libpulse-dev \
|
||||
libjack-jackd2-dev \
|
||||
libgl1-mesa-dev \
|
||||
libglu1-mesa-dev \
|
||||
libx11-dev \
|
||||
libxfixes-dev \
|
||||
libxext-dev \
|
||||
libxi-dev \
|
||||
g++-multilib \
|
||||
libx11-6 \
|
||||
libxext6 \
|
||||
libxfixes3 \
|
||||
libxfixes3:i386 \
|
||||
libglu1-mesa:i386 \
|
||||
sudo \
|
||||
--no-install-recommends
|
||||
|
||||
# make adjustments
|
||||
RUN cd /usr/lib/i386-linux-gnu && \
|
||||
ln -s libGL.so.1 libGL.so && \
|
||||
ln -s libGLU.so.1 libGLU.so && \
|
||||
ln -s libX11.so.6 libX11.so && \
|
||||
ln -s libXext.so.6 libXext.so && \
|
||||
ln -s libXfixes.so.3 libXfixes.so && \
|
||||
ldconfig
|
||||
ln -s libGL.so.1 libGL.so && \
|
||||
ln -s libGLU.so.1 libGLU.so && \
|
||||
ln -s libX11.so.6 libX11.so && \
|
||||
ln -s libXext.so.6 libXext.so && \
|
||||
ln -s libXfixes.so.3 libXfixes.so && \
|
||||
ldconfig
|
||||
|
||||
# add user
|
||||
#RUN adduser --system --home=/src --shell=/bin/sh --no-create-home \
|
||||
|
@ -71,9 +71,9 @@ RUN git clone https://github.com/MaartenBaert/ssr.git /src
|
|||
RUN sed -i".bak" '10,13d' /src/simple-build-and-install
|
||||
RUN sed -i".bak" '13,14d' /src/postinstall
|
||||
RUN cd /src && \
|
||||
#chown -R ssr /src && \
|
||||
#sudo -u ssr
|
||||
/src/simple-build-and-install
|
||||
#chown -R ssr /src && \
|
||||
#sudo -u ssr
|
||||
/src/simple-build-and-install
|
||||
|
||||
# Autorun ssr
|
||||
CMD ["/usr/bin/simplescreenrecorder"]
|
||||
|
|
|
@ -2,7 +2,7 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
stress \
|
||||
--no-install-recommends
|
||||
stress \
|
||||
--no-install-recommends
|
||||
|
||||
CMD [ "stress" ]
|
||||
|
|
|
@ -2,36 +2,36 @@
|
|||
# DESCRIPTION: Create sublime-text 3 container with its dependencies (https://www.sublimetext.com/3)
|
||||
# AUTHOR: Christian Koep <christian.koep@fom-net.de>
|
||||
# USAGE:
|
||||
# # Build sublime-text 3 image
|
||||
# docker build -t sublime-text:3 .
|
||||
# # Build sublime-text 3 image
|
||||
# docker build -t sublime-text:3 .
|
||||
#
|
||||
# # Run the container and mount the local settings and your code
|
||||
# docker run -it \
|
||||
# -v $HOME/.config/sublime-text-3/:/root/.config/sublime-text-3 \
|
||||
# -v $HOME/development:/root/development \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=$DISPLAY sublime-text:3
|
||||
# # Run the container and mount the local settings and your code
|
||||
# docker run -it \
|
||||
# -v $HOME/.config/sublime-text-3/:/root/.config/sublime-text-3 \
|
||||
# -v $HOME/development:/root/development \
|
||||
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=$DISPLAY sublime-text:3
|
||||
#
|
||||
# POSSIBLE ISSUES:
|
||||
# # 'Gtk: cannot open display: :0'
|
||||
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
|
||||
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
|
||||
# # 'Gtk: cannot open display: :0'
|
||||
# Try to set 'DISPLAY=your_host_ip:0' or run 'xhost +' on your host.
|
||||
# (see: http://stackoverflow.com/questions/28392949/running-chromium-inside-docker-gtk-cannot-open-display-0)
|
||||
#
|
||||
|
||||
FROM debian:jessie
|
||||
MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
||||
RUN apt-get update && apt-get -y install \
|
||||
wget \
|
||||
tar \
|
||||
bzip2 \
|
||||
libglib2.0-0 \
|
||||
libx11-6 \
|
||||
libcairo2 \
|
||||
libpango-1.0-0 \
|
||||
libpangocairo-1.0-0 \
|
||||
libgtk2.0-0
|
||||
wget \
|
||||
tar \
|
||||
bzip2 \
|
||||
libglib2.0-0 \
|
||||
libx11-6 \
|
||||
libcairo2 \
|
||||
libpango-1.0-0 \
|
||||
libpangocairo-1.0-0 \
|
||||
libgtk2.0-0
|
||||
RUN wget -q http://c758482.r82.cf2.rackcdn.com/sublime_text_3_build_3083_x64.tar.bz2 -O /usr/src/sublime.tar.bz2 && \
|
||||
cd /usr/src && \
|
||||
tar -xjf /usr/src/sublime.tar.bz2 && \
|
||||
rm -f /usr/src/sublime.tar.bz2
|
||||
cd /usr/src && \
|
||||
tar -xjf /usr/src/sublime.tar.bz2 && \
|
||||
rm -f /usr/src/sublime.tar.bz2
|
||||
CMD ["/usr/src/sublime_text_3/sublime_text", "-w"]
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Termboy in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Termboy in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build termboy
|
||||
# in a container with all dependencies installed.
|
||||
# Tested on Debian Jessie.
|
||||
# This file describes how to build termboy
|
||||
# in a container with all dependencies installed.
|
||||
# Tested on Debian Jessie.
|
||||
# USAGE:
|
||||
# # Download termboy Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/termboy/Dockerfile
|
||||
# # Download termboy Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/termboy/Dockerfile
|
||||
#
|
||||
# # Build termboy image
|
||||
# docker build -t termboy .
|
||||
# # Build termboy image
|
||||
# docker build -t termboy .
|
||||
#
|
||||
# docker run -it termboy
|
||||
# docker run -it termboy
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -27,8 +27,8 @@ COPY termboy-go /usr/bin/termboy-go
|
|||
|
||||
# Install dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
kbd && \
|
||||
mkdir -p $HOME/.config/termboy
|
||||
kbd && \
|
||||
mkdir -p $HOME/.config/termboy
|
||||
|
||||
# add games
|
||||
COPY games $HOME/games
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based emacs tetris in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Run text-based emacs tetris in a container
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build tetris in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build tetris in a container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download tetris Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
|
||||
# # Download tetris Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/tetris/Dockerfile
|
||||
#
|
||||
# # Build tetris image
|
||||
# docker build -t tetris .
|
||||
# # Build tetris image
|
||||
# docker build -t tetris .
|
||||
#
|
||||
# docker run -it tetris
|
||||
# docker run -it tetris
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -21,8 +21,8 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install emacs
|
||||
RUN apt-get update && apt-get install -y \
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
emacs \
|
||||
--no-install-recommends
|
||||
|
||||
# Autorun tetris
|
||||
CMD ["/usr/bin/emacs", "-f", "tetris"]
|
||||
|
|
|
@ -2,11 +2,11 @@ FROM ubuntu:14.04
|
|||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
add-apt-repository ppa:tomahawk/ppa && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
tomahawk
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
add-apt-repository ppa:tomahawk/ppa && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
tomahawk
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/tomahawk" ]
|
||||
ENTRYPOINT [ "/usr/bin/tomahawk" ]
|
||||
|
|
|
@ -1,27 +1,27 @@
|
|||
# Run tor browser in a container
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -v /dev/snd:/dev/snd \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/tor-browser
|
||||
# -v /dev/snd:/dev/snd \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/tor-browser
|
||||
#
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
libasound2 \
|
||||
libdbus-glib-1-2 \
|
||||
libgtk2.0-0 \
|
||||
libxrender1 \
|
||||
libxt6 \
|
||||
xz-utils \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ca-certificates \
|
||||
curl \
|
||||
libasound2 \
|
||||
libdbus-glib-1-2 \
|
||||
libgtk2.0-0 \
|
||||
libxrender1 \
|
||||
libxt6 \
|
||||
xz-utils \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV HOME /home/user
|
||||
RUN useradd --create-home --home-dir $HOME user \
|
||||
&& chown -R user:user $HOME
|
||||
&& chown -R user:user $HOME
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
|
|
|
@ -1,20 +1,20 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create transmission container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create transmission container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build a transmission container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build a transmission container with all
|
||||
# dependencies installed. It uses native X11 unix socket.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download transmission-ui Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/transmission-ui/Dockerfile
|
||||
# # Download transmission-ui Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/transmission-ui/Dockerfile
|
||||
#
|
||||
# # Build transmission image
|
||||
# docker build -t jess/transmission-ui .
|
||||
# # Build transmission image
|
||||
# docker build -t jess/transmission-ui .
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -v /home/jessie/Torrents:/Torrents \
|
||||
# -e DISPLAY=unix$DISPLAY jess/transmission-ui
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -v /home/jessie/Torrents:/Torrents \
|
||||
# -e DISPLAY=unix$DISPLAY jess/transmission-ui
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -23,11 +23,11 @@ MAINTAINER Jessica Frazelle <jess@docker.com>
|
|||
|
||||
# Install transmission and its dependencies
|
||||
RUN apt-get update && apt-get install -y \
|
||||
transmission-cli \
|
||||
transmission-common \
|
||||
transmission-daemon \
|
||||
transmission-gtk \
|
||||
--no-install-recommends
|
||||
transmission-cli \
|
||||
transmission-common \
|
||||
transmission-daemon \
|
||||
transmission-gtk \
|
||||
--no-install-recommends
|
||||
|
||||
# Autorun transmission
|
||||
CMD ["/usr/bin/transmission-gtk"]
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create transmission container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# VERSION: 0.1
|
||||
# DESCRIPTION: Create transmission container with its dependencies
|
||||
# AUTHOR: Jessica Frazelle <jess@docker.com>
|
||||
# COMMENTS:
|
||||
# This file describes how to build a transmission container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# This file describes how to build a transmission container with all
|
||||
# dependencies installed.
|
||||
# Tested on Debian Jessie
|
||||
# USAGE:
|
||||
# # Download transmission Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/transmission/Dockerfile
|
||||
# # Download transmission Dockerfile
|
||||
# wget http://raw.githubusercontent.com/jfrazelle/dockerfiles/master/transmission/Dockerfile
|
||||
#
|
||||
# # Build transmission image
|
||||
# docker build -t jess/transmission .
|
||||
# # Build transmission image
|
||||
# docker build -t jess/transmission .
|
||||
#
|
||||
# docker run -d --name transmission \
|
||||
# -v /home/jessie/Torrents:/transmission/download \
|
||||
# -p 9091:9091 -p 51413:51413 -p 51413:51413/udp \
|
||||
# jess/transmission
|
||||
# docker run -d --name transmission \
|
||||
# -v /home/jessie/Torrents:/transmission/download \
|
||||
# -p 9091:9091 -p 51413:51413 -p 51413:51413/udp \
|
||||
# jess/transmission
|
||||
#
|
||||
|
||||
# Base docker image
|
||||
|
@ -23,12 +23,12 @@ FROM debian:jessie
|
|||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
transmission-daemon \
|
||||
&& mkdir -p /transmission/download \
|
||||
&& mkdir -p /transmission/watch \
|
||||
&& mkdir -p /transmission/incomplete \
|
||||
&& mkdir -p /transmission/config \
|
||||
&& chmod 1777 /transmission
|
||||
transmission-daemon \
|
||||
&& mkdir -p /transmission/download \
|
||||
&& mkdir -p /transmission/watch \
|
||||
&& mkdir -p /transmission/incomplete \
|
||||
&& mkdir -p /transmission/config \
|
||||
&& chmod 1777 /transmission
|
||||
|
||||
ENV TRANSMISSION_HOME /transmission/config
|
||||
|
||||
|
|
|
@ -1,21 +1,21 @@
|
|||
# Run virtualbox in a container
|
||||
#
|
||||
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/virtualbox
|
||||
# -e DISPLAY=unix$DISPLAY \
|
||||
# jess/virtualbox
|
||||
#
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
curl -sSL https://www.virtualbox.org/download/oracle_vbox.asc | apt-key add - && \
|
||||
echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" >> /etc/apt/sources.list.d/virtualbox.list && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
virtualbox
|
||||
ca-certificates \
|
||||
curl \
|
||||
software-properties-common \
|
||||
--no-install-recommends && \
|
||||
curl -sSL https://www.virtualbox.org/download/oracle_vbox.asc | apt-key add - && \
|
||||
echo "deb http://download.virtualbox.org/virtualbox/debian jessie contrib" >> /etc/apt/sources.list.d/virtualbox.list && \
|
||||
apt-get update && \
|
||||
apt-get install -y \
|
||||
virtualbox
|
||||
|
||||
ENTRYPOINT [ "/usr/bin/virtualbox" ]
|
||||
ENTRYPOINT [ "/usr/bin/virtualbox" ]
|
||||
|
|
|
@ -1,49 +1,49 @@
|
|||
# Run znc in a container
|
||||
#
|
||||
# docker run --restart always -d \
|
||||
# --name znc \
|
||||
# -p 6697:6697 \
|
||||
# -v /volumes/znc:/home/user/.znc \
|
||||
# jess/znc
|
||||
# --name znc \
|
||||
# -p 6697:6697 \
|
||||
# -v /volumes/znc:/home/user/.znc \
|
||||
# jess/znc
|
||||
#
|
||||
FROM debian:jessie
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
curl \
|
||||
libdatetime-perl \
|
||||
libglib2.0-0 \
|
||||
libwww-perl \
|
||||
perl \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
ca-certificates \
|
||||
curl \
|
||||
libdatetime-perl \
|
||||
libglib2.0-0 \
|
||||
libwww-perl \
|
||||
perl \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV HOME /home/user
|
||||
RUN useradd --create-home --home-dir $HOME user \
|
||||
&& chown -R user:user $HOME
|
||||
&& chown -R user:user $HOME
|
||||
|
||||
ENV LANG C.UTF-8
|
||||
|
||||
ENV ZNC_VERSION 1.4
|
||||
|
||||
RUN buildDeps=' \
|
||||
build-essential \
|
||||
libssl-dev \
|
||||
libperl-dev \
|
||||
' \
|
||||
&& set -x \
|
||||
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& curl -sSL "http://znc.in/releases/znc-${ZNC_VERSION}.tar.gz" -o /tmp/znc.tar.gz \
|
||||
&& mkdir -p /usr/src/znc \
|
||||
&& tar -xzf /tmp/znc.tar.gz -C /usr/src/znc --strip-components 1 \
|
||||
&& rm /tmp/znc.tar.gz* \
|
||||
&& cd /usr/src/znc \
|
||||
&& ./configure \
|
||||
&& make -j8 \
|
||||
&& make install \
|
||||
&& rm -rf /usr/src/znc \
|
||||
&& apt-get purge -y --auto-remove $buildDeps
|
||||
build-essential \
|
||||
libssl-dev \
|
||||
libperl-dev \
|
||||
' \
|
||||
&& set -x \
|
||||
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/* \
|
||||
&& curl -sSL "http://znc.in/releases/znc-${ZNC_VERSION}.tar.gz" -o /tmp/znc.tar.gz \
|
||||
&& mkdir -p /usr/src/znc \
|
||||
&& tar -xzf /tmp/znc.tar.gz -C /usr/src/znc --strip-components 1 \
|
||||
&& rm /tmp/znc.tar.gz* \
|
||||
&& cd /usr/src/znc \
|
||||
&& ./configure \
|
||||
&& make -j8 \
|
||||
&& make install \
|
||||
&& rm -rf /usr/src/znc \
|
||||
&& apt-get purge -y --auto-remove $buildDeps
|
||||
|
||||
WORKDIR $HOME
|
||||
USER user
|
||||
|
|
Loading…
Reference in New Issue
Block a user