Skip to content

Commit

Permalink
Push
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Jan 4, 2018
0 parents commit e81ba88
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
18 changes: 18 additions & 0 deletions 1.6/Dockerfile
@@ -0,0 +1,18 @@
FROM erlang:18

MAINTAINER Vincent Composieux <vincent@composieux.fr>

RUN apt-get update && \
apt-get install -y python perl libtemplate-perl gnuplot && \
curl http://tsung.erlang-projects.org/dist/tsung-1.6.0.tar.gz --output /tmp/tsung-1.6.0.tar.gz \
&& cd /tmp/ \
&& tar xzf ./tsung-1.6.0.tar.gz \
&& cd tsung-1.6.0 \
&& ./configure \
&& make \
&& make install \
&& rm -rf /tmp/tsung*

EXPOSE 8091

ENTRYPOINT ["tsung"]
18 changes: 18 additions & 0 deletions 1.7/Dockerfile
@@ -0,0 +1,18 @@
FROM erlang:18

MAINTAINER Vincent Composieux <vincent@composieux.fr>

RUN apt-get update && \
apt-get install -y python perl libtemplate-perl gnuplot && \
curl http://tsung.erlang-projects.org/dist/tsung-1.7.0.tar.gz --output /tmp/tsung-1.7.0.tar.gz \
&& cd /tmp/ \
&& tar xzf ./tsung-1.7.0.tar.gz \
&& cd tsung-1.7.0 \
&& ./configure \
&& make \
&& make install \
&& rm -rf /tmp/tsung*

EXPOSE 8091

ENTRYPOINT ["tsung"]
10 changes: 10 additions & 0 deletions README.md
@@ -0,0 +1,10 @@
docker-tsung
============

A Dockerfile for running Tsung into docker.

Available tags
--------------

- [`1.7`, `latest` (*Dockerfile*)](https://github.com/eko/docker-tsung/blob/master/1.7/Dockerfile)
- [`1.6` (*Dockerfile*)](https://github.com/eko/docker-tsung/blog/master/1.6/Dockerfile)

0 comments on commit e81ba88

Please sign in to comment.