├── .gitignore ├── .travis.yml ├── Gemfile ├── Gemfile.lock ├── README.md ├── cf-weaknesses-over-docker-orchestration.md ├── config.rb ├── deploy_to_cloudfoundry.sh ├── explaining-buildpacks-vs-docker.md ├── http-server.js ├── manifest.yml ├── npm-shrinkwrap.json ├── package.json ├── release_notes ├── cf-176-whats-in-the-deploy.html ├── cf-177-whats-in-the-deploy.html ├── cf-178-whats-in-the-deploy.html ├── cf-179-whats-in-the-deploy.html ├── cf-180-whats-in-the-deploy.html ├── cf-182-whats-in-the-deploy.html ├── cf-183-whats-in-the-deploy.html ├── cf-185-whats-in-the-deploy.html ├── cf-186-whats-in-the-deploy.html ├── cf-187-whats-in-the-deploy.html ├── cf-188-whats-in-the-deploy.html ├── cf-189-whats-in-the-deploy.html ├── cf-190-whats-in-the-deploy.html ├── cf-191-whats-in-the-deploy.html ├── cf-192-whats-in-the-deploy.html ├── cf-193-whats-in-the-deploy.html ├── cf-194-whats-in-the-deploy.html ├── cf-195-whats-in-the-deploy.html ├── cf-196-whats-in-the-deploy.html ├── cf-197-whats-in-the-deploy.html ├── cf-198-whats-in-the-deploy.html ├── cf-199-whats-in-the-deploy.html ├── cf-200-whats-in-the-deploy.html ├── cf-201-whats-in-the-deploy.html ├── cf-202-whats-in-the-deploy.html ├── cf-203-whats-in-the-deploy.html ├── cf-204-whats-in-the-deploy.html ├── cf-205-whats-in-the-deploy.html ├── cf-206-whats-in-the-deploy.html ├── cf-207-whats-in-the-deploy.html ├── cf-208-whats-in-the-deploy.html ├── cf-209-whats-in-the-deploy.html ├── cf-210-whats-in-the-deploy.html ├── cf-211-whats-in-the-deploy.html └── cf-212-whats-in-the-deploy.html ├── source ├── images │ ├── bg.png │ ├── glyphicons-halflings-white.png │ └── glyphicons-halflings.png ├── index.html.md ├── javascripts │ ├── all.js │ ├── bootstrap.js │ ├── google-custom-search.js │ └── jquery-1.9.1.js ├── layouts │ └── layout.erb └── stylesheets │ ├── bootstrap.css │ └── style.css └── ways-to-implement-data-services.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/README.md -------------------------------------------------------------------------------- /cf-weaknesses-over-docker-orchestration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/cf-weaknesses-over-docker-orchestration.md -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/config.rb -------------------------------------------------------------------------------- /deploy_to_cloudfoundry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/deploy_to_cloudfoundry.sh -------------------------------------------------------------------------------- /explaining-buildpacks-vs-docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/explaining-buildpacks-vs-docker.md -------------------------------------------------------------------------------- /http-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/http-server.js -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/manifest.yml -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/package.json -------------------------------------------------------------------------------- /release_notes/cf-176-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-176-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-177-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-177-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-178-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-178-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-179-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-179-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-180-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-180-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-182-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-182-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-183-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-183-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-185-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-185-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-186-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-186-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-187-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-187-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-188-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-188-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-189-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-189-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-190-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-190-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-191-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-191-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-192-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-192-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-193-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-193-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-194-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-194-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-195-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-195-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-196-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-196-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-197-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-197-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-198-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-198-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-199-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-199-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-200-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-200-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-201-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-201-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-202-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-202-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-203-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-203-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-204-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-204-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-205-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-205-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-206-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-206-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-207-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-207-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-208-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-208-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-209-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-209-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-210-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-210-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-211-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-211-whats-in-the-deploy.html -------------------------------------------------------------------------------- /release_notes/cf-212-whats-in-the-deploy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/release_notes/cf-212-whats-in-the-deploy.html -------------------------------------------------------------------------------- /source/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/images/bg.png -------------------------------------------------------------------------------- /source/images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /source/images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /source/index.html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/index.html.md -------------------------------------------------------------------------------- /source/javascripts/all.js: -------------------------------------------------------------------------------- 1 | //= require_tree . -------------------------------------------------------------------------------- /source/javascripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/javascripts/bootstrap.js -------------------------------------------------------------------------------- /source/javascripts/google-custom-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/javascripts/google-custom-search.js -------------------------------------------------------------------------------- /source/javascripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/javascripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /source/layouts/layout.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/layouts/layout.erb -------------------------------------------------------------------------------- /source/stylesheets/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/stylesheets/bootstrap.css -------------------------------------------------------------------------------- /source/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/source/stylesheets/style.css -------------------------------------------------------------------------------- /ways-to-implement-data-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cloudfoundry-community/cf-docs-contrib/HEAD/ways-to-implement-data-services.md --------------------------------------------------------------------------------