Skip to content

Commit b25d413

Browse files
authored
Merge pull request #200 from deniszh/DZ-1.1.8-8
Django 2.2.27, go-carbon 0.16.2
2 parents c340268 + 70f7dcb commit b25d413

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ RUN true \
2626
postgresql-dev \
2727
librdkafka \
2828
jansson \
29+
bash \
2930
&& rm -rf \
3031
/etc/nginx/conf.d/default.conf \
3132
&& mkdir -p \
@@ -68,7 +69,7 @@ RUN true \
6869
&& echo 'INPUT ( libldap.so )' > /usr/lib/libldap_r.so \
6970
&& pip install \
7071
cairocffi==1.1.0 \
71-
django==2.2.26 \
72+
django==2.2.27 \
7273
django-statsd-mozilla \
7374
fadvise \
7475
gunicorn==20.1.0 \
@@ -123,12 +124,12 @@ RUN git clone "${statsd_repo}" \
123124

124125
# build go-carbon (optional)
125126
# https://github.com/go-graphite/go-carbon/pull/340
126-
ARG gocarbon_version=0.15.6
127+
ARG gocarbon_version=0.16.2
127128
ARG gocarbon_repo=https://github.com/go-graphite/go-carbon.git
128129
RUN git clone "${gocarbon_repo}" /usr/local/src/go-carbon \
129130
&& cd /usr/local/src/go-carbon \
130131
&& git checkout tags/v"${gocarbon_version}" \
131-
&& make \
132+
&& make go-carbon \
132133
&& chmod +x go-carbon && mkdir -p /opt/graphite/bin/ \
133134
&& cp -fv go-carbon /opt/graphite/bin/go-carbon \
134135
|| true

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Any suggestions / patches etc. are welcome!
1212
- Starting from `1.1.7-1` we're building arm/arm64 versions too.
1313
- Starting from `1.1.7-11` we're building linux/s390x versions too.
1414
- Starting from `1.1.7-6` and up to `1.1.8-5` we were building '-pypy' version of x64 image, but now pypy building is disabled because lacking recent pypy docker images based on Alpine.
15-
- Starting from `1.1.9-1` we're building we're building linux/arm/v7 and linux/arm64/v8 by default.
16-
- Starting from `1.1.9-1` we're uploading packages also to ghcr.io/deniszh repository.
15+
- Starting from `1.1.8-8` we're building linux/arm/v7 and linux/arm64/v8 by default.
16+
- Starting from `1.1.8-8` we're uploading docker images also to ghcr.io/deniszh repository.
1717

1818
# Docker Image for Graphite & Statsd
1919

@@ -316,7 +316,7 @@ Use `GOCARBON=1` environment variable to enable [go-carbon](https://github.com/l
316316

317317
### brubeck
318318

319-
Use `BRUBECK=1` environment variable to enable [brubeck]() instance of normal Statsd. Please note that brubeck has different config format and not fully compatible with original statsd.
319+
Use `BRUBECK=1` environment variable to enable [brubeck](https://github.com/lukepalmer/brubeck) instance of normal Statsd. Please note that brubeck has different config format and not fully compatible with original statsd.
320320

321321

322322
## Additional Reading

build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
VERSION=1.1.8-7
2+
VERSION=1.1.8-8
33
docker build . \
44
--build-arg python_extra_flags="--single-version-externally-managed --root=/" \
5-
--no-cache --tag graphiteapp/graphite-statsd:$VERSION
5+
--no-cache --tag graphiteapp/graphite-statsd:$VERSION --progress tty

0 commit comments

Comments
 (0)