diff --git a/graphite/arm/Dockerfile b/graphite/arm/Dockerfile deleted file mode 100644 index 6b5c5c0..0000000 --- a/graphite/arm/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# Dockerfile for graphite-arm -# - -FROM easypi/alpine-arm -MAINTAINER EasyPi Software Foundation - -ENV PATH=$PATH:/opt/graphite/bin -ENV PYTHONPATH=/opt/graphite/lib:/opt/graphite/webapp -ENV GRAPHITE_CONF_DIR=/opt/graphite/conf -ENV GRAPHITE_STORAGE_DIR=/opt/graphite/storage - -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 \ - supervisor \ - https://github.com/graphite-project/whisper/tarball/master \ - https://github.com/graphite-project/carbon/tarball/master \ - https://github.com/graphite-project/graphite-web/tarball/master \ - -r https://github.com/graphite-project/graphite-web/raw/master/requirements.txt \ - && 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 \ - && python 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"] diff --git a/graphite/arm/docker-compose.yml b/graphite/arm/docker-compose.yml deleted file mode 100644 index 794c4f9..0000000 --- a/graphite/arm/docker-compose.yml +++ /dev/null @@ -1,11 +0,0 @@ -graphite: - image: easypi/graphite-arm - ports: - - 2003:2003 - - 2004:2004 - - 7002:7002 - - 8080:8080 - - 9001:9001 - volumes: - - ./data:/opt/graphite/storage - restart: always diff --git a/graphite/arm/supervisord.conf b/graphite/arm/supervisord.conf deleted file mode 100644 index db63e8e..0000000 --- a/graphite/arm/supervisord.conf +++ /dev/null @@ -1,22 +0,0 @@ -[supervisord] -loglevel = info - -[rpcinterface:supervisor] -supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface - -[inet_http_server] -port = 0.0.0.0:9001 - -[supervisorctl] -serverurl = http://127.0.0.1:9001 - -[program:carbon-cache] -command = carbon-cache.py --debug start -redirect_stderr = true -autorestart = true - -[program:graphite-webapp] -command = gunicorn -b :8080 graphite.wsgi:application -directory = /opt/graphite/webapp -redirect_stderr = true -autorestart = true