mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-03-31 21:55:08 +02:00
update graphite
This commit is contained in:
parent
e5121a0ed1
commit
3d4fc23dc7
@ -87,7 +87,6 @@ A collection of delicious docker recipes.
|
|||||||
- [x] collectd
|
- [x] collectd
|
||||||
- [x] elastalert
|
- [x] elastalert
|
||||||
- [x] glances
|
- [x] glances
|
||||||
- [x] grafana
|
|
||||||
- [x] graphite
|
- [x] graphite
|
||||||
- [x] influxdb
|
- [x] influxdb
|
||||||
- [x] logstash
|
- [x] logstash
|
||||||
@ -340,6 +339,7 @@ A collection of delicious docker recipes.
|
|||||||
- [ ] python
|
- [ ] python
|
||||||
- [x] gogs/gogs :cn:
|
- [x] gogs/gogs :cn:
|
||||||
- [x] gotify/server
|
- [x] gotify/server
|
||||||
|
- [x] grafana/grafana
|
||||||
- [x] haproxy
|
- [x] haproxy
|
||||||
- [x] h2non/imaginary
|
- [x] h2non/imaginary
|
||||||
- [x] jellyfin/jellyfin
|
- [x] jellyfin/jellyfin
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
grafana
|
grafana
|
||||||
=======
|
=======
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
[Grafana][1] is a leading open source application for visualizing large-scale
|
[Grafana][1] is a leading open source application for visualizing large-scale
|
||||||
measurement data.
|
measurement data.
|
||||||
|
|
||||||
|
@ -24,6 +24,7 @@ RUN set -xe \
|
|||||||
python3 \
|
python3 \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
|
&& curl -sSL https://bootstrap.pypa.io/get-pip.py | python3 \
|
||||||
|
&& pip3 install pip==20.1 \
|
||||||
&& pip3 install --no-cache-dir gunicorn supervisor \
|
&& pip3 install --no-cache-dir gunicorn supervisor \
|
||||||
&& pip3 install --no-cache-dir --install-option=--prefix=/opt/graphite \
|
&& pip3 install --no-cache-dir --install-option=--prefix=/opt/graphite \
|
||||||
--install-option=--install-lib=/opt/graphite/lib \
|
--install-option=--install-lib=/opt/graphite/lib \
|
||||||
@ -44,7 +45,7 @@ RUN set -xe \
|
|||||||
&& apk del build-base \
|
&& apk del build-base \
|
||||||
curl \
|
curl \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
python-dev \
|
python3-dev \
|
||||||
&& rm -rf /root/.cache/pip \
|
&& rm -rf /root/.cache/pip \
|
||||||
/var/cache/apk/*
|
/var/cache/apk/*
|
||||||
|
|
||||||
|
@ -10,22 +10,24 @@ graphite
|
|||||||
## docker-compose.yml
|
## docker-compose.yml
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
graphite:
|
version: "3.8"
|
||||||
image: vimagick/graphite
|
services:
|
||||||
ports:
|
graphite:
|
||||||
- "2003:2003"
|
image: vimagick/graphite
|
||||||
- "2003:2003/udp"
|
ports:
|
||||||
- "2004:2004"
|
- "2003:2003/udp"
|
||||||
- "2023:2023"
|
- "2003:2003"
|
||||||
- "2024:2024"
|
- "2004:2004"
|
||||||
- "7002:7002"
|
- "2023:2023"
|
||||||
- "8080:8080"
|
- "2024:2024"
|
||||||
- "9001:9001"
|
- "7002:7002"
|
||||||
volumes:
|
- "8080:8080"
|
||||||
- ./data/conf:/opt/graphite/conf
|
- "9001:9001"
|
||||||
- ./data/storage:/opt/graphite/storage
|
volumes:
|
||||||
- ./data/storage/log/webapp:/opt/graphite/storage/log/webapp
|
- ./data/conf:/opt/graphite/conf
|
||||||
restart: unless-stopped
|
- ./data/storage:/opt/graphite/storage
|
||||||
|
- ./data/storage/log/webapp:/opt/graphite/storage/log/webapp
|
||||||
|
restart: unless-stopped
|
||||||
```
|
```
|
||||||
|
|
||||||
## Up and Running
|
## Up and Running
|
||||||
|
@ -1,16 +1,18 @@
|
|||||||
graphite:
|
version: "3.8"
|
||||||
image: vimagick/graphite
|
services:
|
||||||
ports:
|
graphite:
|
||||||
- "2003:2003/udp"
|
image: vimagick/graphite
|
||||||
- "2003:2003"
|
ports:
|
||||||
- "2004:2004"
|
- "2003:2003/udp"
|
||||||
- "2023:2023"
|
- "2003:2003"
|
||||||
- "2024:2024"
|
- "2004:2004"
|
||||||
- "7002:7002"
|
- "2023:2023"
|
||||||
- "8080:8080"
|
- "2024:2024"
|
||||||
- "9001:9001"
|
- "7002:7002"
|
||||||
volumes:
|
- "8080:8080"
|
||||||
- ./data/conf:/opt/graphite/conf
|
- "9001:9001"
|
||||||
- ./data/storage:/opt/graphite/storage
|
volumes:
|
||||||
- ./data/storage/log/webapp:/opt/graphite/storage/log/webapp
|
- ./data/conf:/opt/graphite/conf
|
||||||
restart: unless-stopped
|
- ./data/storage:/opt/graphite/storage
|
||||||
|
- ./data/storage/log/webapp:/opt/graphite/storage/log/webapp
|
||||||
|
restart: unless-stopped
|
||||||
|
Loading…
x
Reference in New Issue
Block a user