Last active
March 11, 2016 09:36
-
-
Save philwinder/1c8153aedf26df48dd94 to your computer and use it in GitHub Desktop.
test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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