diff options
author | Bin Yang <bin.yang@windriver.com> | 2019-03-20 06:26:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-03-20 06:26:39 +0000 |
commit | e35591ab0994f19ca86e96d28fe77041bcb3a9f1 (patch) | |
tree | 732d475830b059768d4c34ea3e4f877b732032f8 /vagrant/tests/cFW/darkstat | |
parent | e50daed19bbaec979a91f2677289f1c2e6e0d0d9 (diff) | |
parent | 9810b36a838c0db85b820d457b44c69bafcca6a0 (diff) |
Merge "Add cFW scripts folder"
Diffstat (limited to 'vagrant/tests/cFW/darkstat')
-rw-r--r-- | vagrant/tests/cFW/darkstat/Dockerfile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vagrant/tests/cFW/darkstat/Dockerfile b/vagrant/tests/cFW/darkstat/Dockerfile new file mode 100644 index 00000000..d3a46b9c --- /dev/null +++ b/vagrant/tests/cFW/darkstat/Dockerfile @@ -0,0 +1,14 @@ +FROM ubuntu:16.04 +MAINTAINER Victor Morales <electrocucaracha@gmail.com> + +ARG HTTP_PROXY=${HTTP_PROXY} +ARG HTTPS_PROXY=${HTTPS_PROXY} + +ENV http_proxy $HTTP_PROXY +ENV https_proxy $HTTPS_PROXY + +RUN apt-get update && apt-get install -y -qq darkstat + +EXPOSE 667 + +CMD ["/usr/sbin/darkstat", "-i", "eth1", "--no-daemon"] |