add mesos 0.22.1 and 0.23 dockerfiles

add mesos 0.24.0 and 0.24.1 dockerfiles
use mesos 0.24.1 in tests

Signed-off-by: Victor Vieux <vieux@docker.com>
This commit is contained in:
Victor Vieux 2015-07-29 18:19:39 -07:00 committed by Victor Vieux
parent 966dcc7c39
commit 9e6d8eeda0
5 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,10 @@
FROM debian:7
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget -y
RUN wget http://downloads.mesosphere.io/master/debian/7/mesos_0.22.1-1.0.debian78_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon

View File

@ -0,0 +1,10 @@
FROM debian:8
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget python -y
RUN wget http://downloads.mesosphere.io/master/debian/8/mesos_0.23.0-1.0.debian81_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon

View File

@ -0,0 +1,10 @@
FROM debian:8
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget python -y
RUN wget http://downloads.mesosphere.io/master/debian/8/mesos_0.24.0-1.0.33.debian81_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon

View File

@ -0,0 +1,10 @@
FROM debian:8
MAINTAINER Victor Vieux <vieux@docker.com>
RUN apt-get update && apt-get install wget python -y
RUN wget http://downloads.mesosphere.io/master/debian/8/mesos_0.24.1-0.2.35.debian81_amd64.deb -O /tmp/mesos.deb
RUN dpkg -i /tmp/mesos.deb || true
RUN apt-get install -f -y
USER daemon

View File

@ -5,7 +5,7 @@ load ../../helpers
export SWARM_MESOS_TASK_TIMEOUT=30s
export SWARM_MESOS_USER=daemon
MESOS_IMAGE=dockerswarm/mesos:0.23
MESOS_IMAGE=dockerswarm/mesos:0.24.1
MESOS_MASTER_PORT=$(( ( RANDOM % 1000 ) + 10000 ))
# Start mesos master and slave.