mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-18 18:17:51 +01:00
update clean
Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
parent
17bbb62b99
commit
198f1bcd98
|
@ -1,7 +1,7 @@
|
||||||
FROM debian:jessie
|
FROM debian:jessie
|
||||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
ENV CONSUL_VERSION 0.5.0
|
ENV CONSUL_VERSION 0.5.2
|
||||||
|
|
||||||
ADD https://jesss.s3.amazonaws.com/binaries/consul-alerts /usr/local/bin/consul-alerts
|
ADD https://jesss.s3.amazonaws.com/binaries/consul-alerts /usr/local/bin/consul-alerts
|
||||||
ADD https://jesss.s3.amazonaws.com/binaries/consul/${CONSUL_VERSION}/consul /usr/local/bin/consul
|
ADD https://jesss.s3.amazonaws.com/binaries/consul/${CONSUL_VERSION}/consul /usr/local/bin/consul
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
# 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>
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
FROM python:2.7.8
|
FROM python:2.7.8
|
||||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||||
|
|
||||||
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 \
|
||||||
|
@ -10,23 +8,26 @@ RUN apt-get update && apt-get install -y \
|
||||||
liblapack-dev \
|
liblapack-dev \
|
||||||
libzmq-dev \
|
libzmq-dev \
|
||||||
--no-install-recommends
|
--no-install-recommends
|
||||||
RUN pip install -U scipy
|
|
||||||
|
|
||||||
RUN pip install -U matplotlib
|
RUN pip install -U \
|
||||||
RUN pip install -U pandas
|
numpy \
|
||||||
RUN pip install -U patsy
|
scipy \
|
||||||
RUN pip install -U statsmodels
|
matplotlib \
|
||||||
RUN pip install -U scikit-learn
|
pandas \
|
||||||
RUN pip install -U ggplot
|
patsy \
|
||||||
RUN pip install -U pyzmq
|
statsmodels \
|
||||||
RUN pip install -U jinja2
|
scikit-learn \
|
||||||
RUN pip install -U tornado
|
ggplot \
|
||||||
RUN pip install -U ipython
|
pyzmq \
|
||||||
|
jinja2 \
|
||||||
|
tornado \
|
||||||
|
ipython
|
||||||
|
|
||||||
EXPOSE 8888
|
EXPOSE 8888
|
||||||
|
|
||||||
ADD notebook.sh /
|
ADD notebook.sh /
|
||||||
RUN chmod u+x /notebook.sh && mkdir -p /root/notebooks
|
RUN chmod u+x /notebook.sh \
|
||||||
|
&& mkdir -p /root/notebooks
|
||||||
|
|
||||||
WORKDIR /root/notebooks
|
WORKDIR /root/notebooks
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,11 @@
|
||||||
# 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'
|
||||||
|
@ -16,8 +20,11 @@
|
||||||
|
|
||||||
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"]
|
||||||
|
|
|
@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
|
||||||
ENV HOME /root
|
ENV HOME /root
|
||||||
WORKDIR $HOME
|
WORKDIR $HOME
|
||||||
|
|
||||||
ENV JOBS 2
|
ENV JOBS 4
|
||||||
|
|
||||||
# add install_kernel helper func
|
# add install_kernel helper func
|
||||||
RUN { \
|
RUN { \
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
# To use:
|
# To use:
|
||||||
# Needs X11 socket and dbus mounted
|
# Needs X11 socket and dbus mounted
|
||||||
|
#
|
||||||
# docker run --rm -it \
|
# docker run --rm -it \
|
||||||
# -v /etc/machine-id:/etc/machine-id:ro \
|
# -v /etc/machine-id:/etc/machine-id:ro \
|
||||||
# -v /etc/localtime:/etc/localtime:ro \
|
# -v /etc/localtime:/etc/localtime:ro \
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
|
|
||||||
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 \
|
||||||
|
@ -30,8 +31,10 @@ RUN apt-get update && apt-get -y install \
|
||||||
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"]
|
||||||
|
|
|
@ -7,6 +7,7 @@ RUN apt-get update && apt-get install -y \
|
||||||
|
|
||||||
ENV LANG C.UTF-8
|
ENV LANG C.UTF-8
|
||||||
ENV HOME /home/user
|
ENV HOME /home/user
|
||||||
|
|
||||||
RUN useradd --create-home --home-dir $HOME user \
|
RUN useradd --create-home --home-dir $HOME user \
|
||||||
&& mkdir -p $HOME/.weechat \
|
&& mkdir -p $HOME/.weechat \
|
||||||
&& chown -R user:user $HOME
|
&& chown -R user:user $HOME
|
||||||
|
|
Loading…
Reference in New Issue
Block a user