Skip to content

Instantly share code, notes, and snippets.

@philwinder
Last active March 11, 2016 09:36
Show Gist options
  • Save philwinder/1c8153aedf26df48dd94 to your computer and use it in GitHub Desktop.
Save philwinder/1c8153aedf26df48dd94 to your computer and use it in GitHub Desktop.
test
# Introduction
# This example uses minimesos to run a simple hello world webapp.
# First, start minimesos with three agents.
# Required application name for Spring
spring.application.name=hello-world
# Mesos framework name
mesos.framework.name=hello-world
# Mesos settings
mesos.master=zk://${mesos.zookeeper.server}/mesos
mesos.zookeeper.server=$ZOOKEEPER:2181
# Task resources
mesos.resources.cpus=0.1
mesos.resources.mem=64
mesos.resources.scale=3
# Docker image
mesos.docker.image=training/webapp:latest
mesos.docker.network=BRIDGE
# Command to run
mesos.command=python app.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment