Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drnic/ybd-pipeline-demo
https://github.com/drnic/ybd-pipeline-demo
Last synced: 24 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/drnic/ybd-pipeline-demo
- Owner: drnic
- Created: 2015-06-17T18:24:35.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-22T02:14:38.000Z (over 9 years ago)
- Last Synced: 2024-10-16T12:33:50.243Z (2 months ago)
- Language: Shell
- Size: 137 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Demo Pipeline for YBD
=====================Setup pipeline in Concourse
---------------------------```
fly -t bosh-lite c -c pipeline.yml --vars-from credentials.yml demo-ybd
```Building/updating the base Docker image for tasks
-------------------------------------------------Each task within all job build plans uses the same base Docker image for all dependencies. Using the same Docker image is a convenience. This section explains how to re-build and push it to Docker Hub.
All the resources used in the pipeline are shipped as independent Docker images and are outside the scope of this section.
```
fly -t bosh-lite configure \
-c ci_image/pipeline.yml \
--vars-from credentials.yml \
demo-ybd-image
```This will ask your targeted Concourse to pull down this project repository, and build the `ci_image/Dockerfile`, and push it to a Docker image on Docker Hub.