sflowtool on top of ubuntu:latest. Exposes only default port of 6343.
10K+
FROM ubuntu:14.04 MAINTAINER [email protected]
EXPOSE 6343/udp
ENV SFLOWTOOL_VER 3.39
RUN apt-get update
&& apt-get install -y --no-install-recommends build-essential wget
RUN wget --no-check-certificate https://github.com/sflow/sflowtool/releases/download/v$SFLOWTOOL_VER/sflowtool-$SFLOWTOOL_VER.tar.gz
&& tar -xvzf sflowtool-$SFLOWTOOL_VER.tar.gz
RUN cd sflowtool-$SFLOWTOOL_VER && ./configure && make && make install
RUN apt-get remove --auto-remove --purge -y build-essential wget RUN rm sflowtool-$SFLOWTOOL_VER.tar.gz
CMD ["/bin/bash"]
Content type
Image
Digest
Size
128.3 MB
Last updated
almost 11 years ago
docker pull openswitch/sflowtool