You've already forked dockerfiles
							
							
				mirror of
				https://github.com/vimagick/dockerfiles.git
				synced 2025-10-30 23:47:48 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Dockerfile for graphite
 | |
| #
 | |
| 
 | |
| FROM alpine
 | |
| MAINTAINER EasyPi Software Foundation
 | |
| 
 | |
| ENV GRAPHITE_VERSION=1.1.5
 | |
| 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 collectstatic --noinput --settings=graphite.settings \
 | |
|     && ./manage.py migrate --noinput --run-syncdb \
 | |
|     && 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/udp \
 | |
|        2003 \
 | |
|        2004 \
 | |
|        2023 \
 | |
|        2024 \
 | |
|        7002 \
 | |
|        8080 \
 | |
|        9001
 | |
| 
 | |
| CMD ["supervisord", "-n"]
 |