minimesos
The experimentation and testing tool for Apache Mesos - NO LONGER MAINTANED!
File Explorer
Download Latest Version (.zip)- install
- install-version
- minimesos
- CommandInitTest.java
- CommandLogsTest.java
- CommandPsTest.java
- CommandTest.java
- CommandUninstallTest.java
- CommandUpTest.java
- basic.groovy
- two-agents.groovy
- complete-minimesosFile
- invalid-minimesosFile.txt
- marathonAppConfig-minimesosFile
- withMarathon-minimesosFile
- app.json
- logback-test.xml
- Command.java
- CommandDestroy.java
- CommandHelp.java
- CommandInfo.java
- CommandInit.java
- CommandInstall.java
- CommandLogs.java
- CommandPs.java
- CommandState.java
- CommandUninstall.java
- CommandUp.java
- CommandVersion.java
- Main.java
- CommandInstallTest.java
- MainTest.java
- app.json
- group.json
- build.gradle
- Dockerfile
- introduction-to-minimesos-screenshot.jpg
- cc-cc.png
- index.md
- minimesos.png
- gradle-wrapper.jar
- gradle-wrapper.properties
- quality.gradle
- spock.gradle
- minimesos-talk.jpg
- minimesos.png
- HelloWorldContainer.java
- MesosExecuteContainer.java
- AuthenticationTest.java
- MesosClusterTest.java
- AgentResourcesConfig.groovy
- AppConfig.groovy
- ClusterConfig.groovy
- ConfigParser.groovy
- ConsulConfig.groovy
- ContainerConfig.groovy
- ContainerConfigBlock.groovy
- GroovyBlock.groovy
- GroupConfig.groovy
- MarathonConfig.groovy
- MesosAgentConfig.groovy
- MesosContainerConfig.groovy
- MesosDNSConfig.groovy
- MesosMasterConfig.groovy
- RegistratorConfig.groovy
- ResourceDef.groovy
- ResourceDefRanges.groovy
- ResourceDefScalar.groovy
- ZooKeeperConfig.groovy
- ClusterProcess.java
- ClusterRepository.java
- ClusterUtil.java
- Consul.java
- Filter.java
- Marathon.java
- MesosAgent.java
- MesosCluster.java
- MesosClusterFactory.java
- MesosContainer.java
- MesosDns.java
- MesosMaster.java
- Registrator.java
- ZooKeeper.java
- DockerClientFactory.java
- DockerContainersUtil.java
- AbstractContainer.java
- ContainerName.java
- MesosClusterTestRule.java
- MarathonContainer.java
- ClusterContainers.java
- ConsulContainer.java
- MesosAgentContainer.java
- MesosClusterContainersFactory.java
- MesosContainerImpl.java
- MesosDnsContainer.java
- MesosMasterContainer.java
- RegistratorContainer.java
- ZooKeeperContainer.java
- Discovery.java
- Executor.java
- Framework.java
- Port.java
- Ports.java
- State.java
- Task.java
- CollectionsUtils.java
- Downloader.java
- Environment.java
- EnvironmentBuilder.java
- Predicate.java
- ResourceUtil.java
- MinimesosException.java
- elasticsearch.json
- mesos-consul.json
- logback.xml
- AgentResourcesConfigTest.groovy
- ConfigParserTest.groovy
- ConfigWriterTest.groovy
- ResourceDefScalarTest.groovy
- MesosClusterContainersFactoryTest.java
- ContainerNameTest.java
- MesosAgentTest.java
- JDependCyclesTest.java
- ClusterContainersTest.java
- ClusterUtilTest.java
- CollectionsUtilsTest.java
- EnvironmentBuilderTest.java
- ResourceUtilTest.java
- ClusterBuilderTest.java
- ParseStateJSONTest.java
- minimesosFile-authenticationTest
- minimesosFile-mesosClusterTest
- logback-test.xml
- build.gradle
- weave-scope.json
- sonar-github-plugin-1.1.jar
- sonar-java-plugin-3.7.1.jar
- sonar-scm-git-plugin-1.0.jar
- sonar-scm-svn-plugin-1.2.jar
- certificate.yaml
- DockerFile
- setup.md
- sonar-deployment.yaml
- sonar-postgres-deployment.yaml
- sonar-postgres-service.yaml
- sonar-service.yaml
- provision.sh
- Vagrantfile
- .editorconfig
- .gitignore
- .pullapprove.yml
- .travis.yml
- build.gradle
- gradle.properties
- gradlew
- LICENSE
- Makefile
- README.md
- settings.gradle
- travis.sh
# Installation Guide
1. Get the code
git clone https://github.com/ContainerSolutions/minimesos
Downloads the entire project code from GitHub to your computer.
cd minimesos
Moves into the project folder you just downloaded.
2. Docker
Easy RecommendedPrerequisites
- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
docker build -f cli/Dockerfile -t minimesos .
Builds a runnable image based on the Dockerfile.
docker run -p 8080:80 minimesos
Runs the built image as an actual container.
Run docker compose ps to check the containers are Up. If the README mentions a port, open http://localhost:PORT in your browser.
3. Gradle (Java/Kotlin)
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
./gradlew build
Builds the project using Gradle.
A BUILD SUCCESSFUL message means it worked. The output is created under build/.
4. Make
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
If it finishes without errors, it worked. Try running the generated executable directly.
// repository documentation
Was this content helpful?
(0 ratings)
