https://github.com/yangboz/spring-boot-docker-mesos
Walk through the process of building a Docker image for running a Spring Boot application on Mesos framework.
https://github.com/yangboz/spring-boot-docker-mesos
Last synced: 4 months ago
JSON representation
Walk through the process of building a Docker image for running a Spring Boot application on Mesos framework.
- Host: GitHub
- URL: https://github.com/yangboz/spring-boot-docker-mesos
- Owner: yangboz
- License: mit
- Created: 2016-09-12T06:33:01.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-21T01:38:01.000Z (about 9 years ago)
- Last Synced: 2025-06-13T19:03:37.074Z (4 months ago)
- Language: HTML
- Homepage: http://yangboz.github.io
- Size: 42 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# spring-boot-docker-mesos
Walk through the process of building a Docker image for running a Spring Boot application on Mesos framework.## Mesos
http://mesos.apache.org/gettingstarted/
####Start Mesos server:
```./bin/mesos-master.sh --ip=127.0.0.1 --work_dir=/var/tmp```
###Start Mesos slave:
```./bin/mesos-slave.sh --master=127.0.0.1:5050 --work_dir=/var/tmp```
###Open the Mesos web page: http://127.0.0.1:5050
## Reference
Spring-boot-docker:https://spring.io/guides/gs/spring-boot-docker/
Mesos on Macosx:https://kolovos.wordpress.com/2014/05/30/building-apache-mesos-on-mac-os-x-mavericks/
Minimesos:https://minimesos.org/
Spring-boot-mesos:http://container-solutions.com/mesos-starter/
Jenkins+Mesos:https://wiki.jenkins-ci.org/display/JENKINS/Mesos+Plugin