1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00

add cadvisor

This commit is contained in:
kev 2016-01-28 18:00:25 +08:00
parent 78297a47da
commit 5aa3720c6a
4 changed files with 59 additions and 0 deletions

View File

@ -27,6 +27,7 @@ dockerfiles
- [x] aria2 :+1: - [x] aria2 :+1:
- [x] audiowaveform - [x] audiowaveform
- [x] bro - [x] bro
- [x] cadvisor
- [x] casperjs :+1: - [x] casperjs :+1:
- [x] chinadns - [x] chinadns
- [x] collectd - [x] collectd

24
cadvisor/Dockerfile Normal file
View File

@ -0,0 +1,24 @@
#
# Dockerfile for cadvisor
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN set -xe \
&& apk add --update ca-certificates device-mapper \
&& wget https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/8/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-2.21-r2.apk \
&& wget https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/8/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-bin-2.21-r2.apk \
&& apk add --allow-untrusted glibc-2.21-r2.apk glibc-bin-2.21-r2.apk \
&& apk add zfs-utils --update-cache --repository http://dl-3.alpinelinux.org/alpine/edge/testing/ --allow-untrusted \
&& /usr/glibc/usr/bin/ldconfig /lib /usr/glibc/usr/lib \
&& echo 'hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4' >> /etc/nsswitch.conf \
&& rm -rf /var/cache/apk/*
RUN set -xe \
&& wget https://github.com/google/cadvisor/releases/download/v0.20.5/cadvisor -O /usr/bin/cadvisor \
&& chmod +x /usr/bin/cadvisor
EXPOSE 8080
ENTRYPOINT ["/usr/bin/cadvisor", "-logtostderr"]

24
cadvisor/README.md Normal file
View File

@ -0,0 +1,24 @@
cadvisor
========
![](https://badge.imagelayers.io/vimagick/cadvisor:latest.svg)
[cAdvisor][1] (Container Advisor) provides container users an understanding of
the resource usage and performance characteristics of their running containers.
## docker-compose.yml
```yaml
cadvisor:
image: vimagick/cadvisor
ports:
- "8080:8080"
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
restart: always
```
[1]: https://github.com/google/cadvisor

View File

@ -0,0 +1,10 @@
cadvisor:
image: vimagick/cadvisor
ports:
- "8080:8080"
volumes:
- /:/rootfs:ro
- /var/run:/var/run:rw
- /sys:/sys:ro
- /var/lib/docker/:/var/lib/docker:ro
restart: always