-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add grafana, graphite-api, go-carbon, collectd-docker
a bunch of metric related services. All running on a new 'metrics' network to facilitate easy linking between each other
- Loading branch information
Showing
5 changed files
with
253 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
FROM ubuntu:16.04 | ||
|
||
ENV GO_CARBON_PKG_URL https://github.com/lomik/go-carbon/releases/download/v0.9.1/go-carbon_0.9.1_amd64.deb | ||
|
||
RUN apt-get update -q \ | ||
&& apt-get install -qy \ | ||
wget \ | ||
&& apt-get -y autoremove \ | ||
&& apt-get -y clean \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
&& rm -rf /tmp/* | ||
|
||
RUN cd /tmp \ | ||
&& wget -q "${GO_CARBON_PKG_URL}" \ | ||
&& dpkg -i /tmp/*.deb \ | ||
&& rm -rf /tmp/* | ||
|
||
EXPOSE 2003 2004 7002 7007 8080 2003/udp | ||
VOLUME /data | ||
|
||
ADD carbon.conf /config/carbon.conf | ||
ADD storage-schemas.conf /config/storage-schemas.conf | ||
|
||
CMD ["go-carbon", "-config", "/config/carbon.conf"] |
Oops, something went wrong.