mirror of
https://github.com/weaveworks/scope.git
synced 2026-07-28 01:31:17 +00:00
* alpine: dl-4.alpinelinux.org is dead, use another server * increase buffer for docker stats Attempt to avoid the following message: docker container: dropping stats. * probe: better timeout error messages The logs contains the following messages: Process reporter took longer than 1s K8s reporter took longer than 1s Docker reporter took longer than 1s Endpoint reporter took longer than 1s This patch prints how long it takes.
12 lines
275 B
Docker
12 lines
275 B
Docker
FROM alpine:latest
|
|
RUN echo "http://dl-3.alpinelinux.org/alpine/edge/testing" >>/etc/apk/repositories && \
|
|
apk add --update runit && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
COPY zombie /
|
|
RUN mkdir -p /etc/service/zombie
|
|
COPY run-zombie /etc/service/zombie/run
|
|
|
|
COPY /runsvinit /
|
|
|