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