mirror of https://github.com/docker/docs.git
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:
parent
966dcc7c39
commit
9e6d8eeda0
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue