https://github.com/jameswoolfenden/gcp-container-cloudbuild
A short example - how to build a spring bot app with Cloud Build
https://github.com/jameswoolfenden/gcp-container-cloudbuild
cloudbuild example gcp
Last synced: 11 months ago
JSON representation
A short example - how to build a spring bot app with Cloud Build
- Host: GitHub
- URL: https://github.com/jameswoolfenden/gcp-container-cloudbuild
- Owner: JamesWoolfenden
- Created: 2019-08-06T14:32:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-14T09:06:26.000Z (almost 6 years ago)
- Last Synced: 2025-01-25T19:28:19.756Z (about 1 year ago)
- Topics: cloudbuild, example, gcp
- Language: Java
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to build a spring boot container in Cloud build
Set-up your repository, and then set-up your project to use a trigger (in cloud build).
Choose the option:
```option
Cloud Build configuration file (yaml or json)
Specify the path to a Cloud Build configuration file
```
Then update **cloudbuild.yaml**:
```yaml
args: ['build', '--tag=gcr.io//', '.']
images: ['gcr.io//']
```
With your project and container name.