mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:31 +02:00
58 lines
1.8 KiB
Docker
58 lines
1.8 KiB
Docker
#
|
|
# Dockerfile for graphite
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER EasyPi Software Foundation
|
|
|
|
ENV GRAPHITE_VERSION=1.1.4
|
|
ENV GRAPHITE_CONF_DIR=/opt/graphite/conf
|
|
ENV GRAPHITE_STORAGE_DIR=/opt/graphite/storage
|
|
ENV PATH=$PATH:/opt/graphite/bin
|
|
ENV PYTHONPATH=/opt/graphite/lib:/opt/graphite/webapp
|
|
|
|
WORKDIR /opt/graphite
|
|
|
|
RUN set -xe \
|
|
&& apk update \
|
|
&& apk add build-base \
|
|
cairo \
|
|
curl \
|
|
git \
|
|
libffi-dev \
|
|
python \
|
|
python-dev \
|
|
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python \
|
|
&& pip install gunicorn scandir supervisor whisper==$GRAPHITE_VERSION \
|
|
&& pip install -r https://github.com/graphite-project/graphite-web/raw/$GRAPHITE_VERSION/requirements.txt \
|
|
&& pip install carbon==$GRAPHITE_VERSION --install-option="--install-lib=/opt/graphite/lib" \
|
|
&& pip install graphite-web==$GRAPHITE_VERSION --install-option="--prefix=/opt/graphite" --install-option="--install-lib=/opt/graphite/webapp" \
|
|
&& cd conf \
|
|
&& cp carbon.conf.example carbon.conf \
|
|
&& cp storage-schemas.conf.example storage-schemas.conf \
|
|
&& cd ../webapp \
|
|
&& echo "SECRET_KEY = '$(head -c 16 /dev/urandom | base64)'" > graphite/local_settings.py \
|
|
&& curl -sSL https://github.com/graphite-project/graphite-web/raw/master/webapp/manage.py > manage.py \
|
|
&& chmod +x manage.py \
|
|
&& ./manage.py migrate --run-syncdb --noinput \
|
|
&& apk del build-base \
|
|
curl \
|
|
git \
|
|
libffi-dev \
|
|
python-dev \
|
|
&& rm -rf /root/.cache/pip \
|
|
/var/cache/apk/*
|
|
|
|
COPY supervisord.conf /etc/supervisor/
|
|
|
|
VOLUME $GRAPHITE_CONF_DIR \
|
|
$GRAPHITE_STORAGE_DIR
|
|
|
|
EXPOSE 2003 \
|
|
2004 \
|
|
7002 \
|
|
8080 \
|
|
9001
|
|
|
|
CMD ["supervisord", "-n"]
|