From ffee5760fab9649612a783c4afad3ec7ab152556 Mon Sep 17 00:00:00 2001 From: Dominik Richter Date: Thu, 22 Mar 2018 12:12:25 -0700 Subject: [PATCH] update versions for mesos containers the current example will break on some newer systems with issues that were fixed in mesos also I'm curious if we should add `no-systemd_enable_support` as it fixed another problem on my end (see [MESOS-3793](https://issues.apache.org/jira/browse/MESOS-3793)) --- mesos/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mesos/README.md b/mesos/README.md index e8cea98..3431fbf 100644 --- a/mesos/README.md +++ b/mesos/README.md @@ -52,7 +52,7 @@ docker run -d --net=host \ -e MESOS_WORK_DIR=/var/tmp/mesos \ -v "$(pwd)/log/mesos:/var/log/mesos" \ -v "$(pwd)/tmp/mesos:/var/tmp/mesos" \ - mesosphere/mesos-master:0.28.0-2.0.16.ubuntu1404 + mesosphere/mesos-master:1.5.0 ``` ### Launch Mesos-Slave @@ -73,5 +73,5 @@ docker run -d --net=host --privileged \ -v /cgroup:/cgroup \ -v /sys:/sys \ -v /usr/local/bin/docker:/usr/local/bin/docker \ - mesosphere/mesos-slave:0.28.0-2.0.16.ubuntu1404 + mesosphere/mesos-slave:1.5.0 ```