forked from jbfavre/docker-vertica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.debian.6_7.0
45 lines (40 loc) · 2.29 KB
/
Dockerfile.debian.6_7.0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FROM debian:6.0.10
MAINTAINER Jean Baptiste Favre <[email protected]>
ENV SHELL "/bin/bash"
ENV DEBIAN_FRONTEND noninteractive
ENV TERM 1
ADD scripts/debian_cleaner.sh /tmp/
RUN echo "deb http://archive.debian.org/debian squeeze main" > /etc/apt/sources.list \
&& echo "deb http://archive.debian.org/debian squeeze-lts main" >> /etc/apt/sources.list \
&& echo "Acquire::Check-Valid-Until false;" > /etc/apt/apt.conf \
&& /usr/bin/apt-get update -yqq \
&& /usr/bin/apt-get upgrade --no-install-recommends -yqq \
&& /usr/bin/apt-get install --no-install-recommends -yqq curl ca-certificates\
&& echo '192.168.42.53 apt.jbfav.re' >> /etc/hosts \
&& echo 'deb http://apt.jbfav.re/release/vertica70/ squeeze main'> /etc/apt/sources.list.d/vertica.list \
&& /usr/bin/curl -SL http://apt.jbfav.re/release/key.gpg | /usr/bin/apt-key add - \
&& /usr/bin/apt-get update -yqq \
&& /usr/bin/chsh -s /bin/bash root \
&& /bin/rm /bin/sh && ln -s /bin/bash /bin/sh \
&& /usr/sbin/groupadd -r verticadba \
&& /usr/sbin/useradd -r -m -s /bin/bash -g verticadba dbadmin \
&& su - dbadmin -c "mkdir /tmp/.python-eggs" \
&& /usr/bin/apt-get install locales \
&& /bin/echo "en_US ISO-8859-1" > /etc/locale.gen \
&& /bin/echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
&& /usr/sbin/locale-gen \
&& echo "dbadmin - nice 0" >> /etc/security/limits.conf \
&& echo "dbadmin - nofile 65536" >> /etc/security/limits.conf \
&& /usr/bin/apt-get install --no-install-recommends -yqq openssh-server openssh-client mcelog sysstat dialog libexpat1 sudo \
&& /usr/bin/apt-get install --no-install-recommends -yqq vertica \
&& /opt/vertica/sbin/install_vertica --license CE --accept-eula --hosts 127.0.0.1 --dba-user-password-disabled --failure-threshold NONE --no-system-configuration \
&& su - dbadmin -c "/opt/vertica/bin/admintools -t create_db -s localhost -d docker -c /home/dbadmin/docker/catalog -D /home/dbadmin/docker/data" \
&& /usr/bin/apt-get remove --purge -y curl ca-certificates \
&& /bin/rm /etc/apt/sources.list.d/vertica.list && /usr/bin/apt-key del DB0AA004 \
&& /bin/bash /tmp/debian_cleaner.sh
ENV PYTHON_EGG_CACHE /tmp/.python-eggs
ENV VERTICADATA /home/dbadmin/docker
VOLUME /home/dbadmin/docker
ENTRYPOINT ["/opt/vertica/bin/docker-entrypoint.sh"]
ADD ./docker-entrypoint.sh /opt/vertica/bin/
EXPOSE 5433