mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
10 lines
300 B
Docker
10 lines
300 B
Docker
FROM stackbrew/ubuntu:raring
|
|
|
|
RUN apt-get update && apt-get install -y collectd
|
|
RUN adduser --system --group --no-create-home collectd
|
|
ADD collectd.conf /etc/collectd/collectd.conf.tmpl
|
|
ADD collectd-wrapper /bin/collectd-wrapper
|
|
RUN chown -R collectd:collectd /etc/collectd
|
|
|
|
CMD ["collectd-wrapper"]
|