bamboo
HAProxy auto configuration and auto service discovery for Mesos Marathon
File Explorer
Download Latest Version (.zip)- event_subscription.go
- service.go
- service_test.go
- state.go
- status.go
- bamboo-server
- bamboo.default
- bamboo.service
- build.after-install
- build.after-remove
- build.before-remove
- build.sh
- ci-jenkins.sh
- init.d-bamboo-server
- run.sh
- supervisord.conf
- supervisord.conf.prod
- development.json
- haproxy_template.cfg
- production.example.json
- Bamboo.go
- configuration.go
- domain_mapping.go
- haproxy.go
- marathon.go
- statsd.go
- zookeeper.go
- Godeps.json
- bamboo.go
- bamboo_test.go
- zk-test.go
- qzk.go
- event_bus.go
- event_handler.go
- event_handler_test.go
- haproxy.go
- marathon.go
- marathon_test.go
- representation.go
- representation_test.go
- service.go
- zookeeper.go
- zookeeper_test.go
- template.go
- template_test.go
- .gitignore
- inject.go
- LICENSE
- README.md
- update_readme.sh
- .gitignore
- env.go
- go_version.go
- Godeps
- LICENSE
- logger.go
- martini.go
- README.md
- recovery.go
- response_writer.go
- return_handler.go
- router.go
- static.go
- wercker.yml
- LICENSE
- osext.go
- osext_plan9.go
- osext_procfs.go
- osext_sysctl.go
- osext_windows.go
- .gitignore
- chown.go
- chown_linux.go
- LICENSE
- lumberjack.go
- README.md
- .gitignore
- .travis.yml
- fix.bash
- g2s.go
- LICENSE
- README.md
- safe.go
- types.go
- conn.go
- constants.go
- lock.go
- server_help.go
- server_java.go
- structs.go
- tracer.go
- util.go
- LICENSE
- modal-confirm.html
- service-resource.js
- state-resource.js
- service-delete-btn-directive.js
- service-edit-btn-directive.js
- service-form-ctrl.js
- service-form.html
- service-form.js
- service-new-btn-directive.js
- service-item-directive.js
- service-item.html
- service-item.js
- service-list-directive.js
- service-list.html
- service-list.js
- .gitkeep
- application.html
- application.js
- main.js
- routes.js
- main-app.js
- main-libs.js
- main.css
- ionicons.eot
- ionicons.svg
- ionicons.ttf
- ionicons.woff
- .gitkeep
- _body.scss
- _buttons.scss
- _modal.scss
- _navbar.scss
- _service-list.scss
- _ionicons-animation.scss
- _ionicons-font.scss
- _ionicons-icons.scss
- _ionicons-variables.scss
- ionicons.scss
- .gitkeep
- main.scss
- index.html
- .gitignore
- .travis.yml
- bamboo.go
- Dockerfile
- Dockerfile-deb
- Gruntfile.js
- karma.conf.js
- LICENSE
- package.json
- Procfile
- README.md
- VERSION
π Installation Guide
git clone https://github.com/QubitProducts/bamboo
Downloads the entire project code from GitHub to your computer.
cd bamboo
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- Node.js Node.js must be installed to use npm.
npm install -g grunt-cli napa browserify node-static foreman karma-cli
Installs the package published on the npm registry globally β no need to clone the source.
Pulled directly from this repo's README.
3. Docker
Easy- 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 Dockerfile-deb -t bamboo-build .
Builds a runnable image based on the Dockerfile.
docker run -it -v $(pwd)/output:/output bamboo-build
Runs the built image as an actual container.
docker build -t bamboo .
Builds a runnable image based on the Dockerfile.
docker run -t -i --rm -p 8000:8000 -p 80:80 \
Runs the built image as an actual container.
Pulled directly from this repo's README.
4. Node.js
Easynpm install -g grunt-cli napa browserify node-static foreman karma-cli
Installs the package published on the npm registry globally β no need to clone the source.
npm install && napa
Downloads and installs the libraries listed in package.json.
Pulled directly from this repo's README.
