This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2.1 | |
jobs: # a collection of steps | |
build: # runs not using Workflows must have a `build` job as entry point | |
working_directory: ~/circleci-demo-java-spring # directory where steps will run | |
docker: # run the steps with Docker | |
- image: circleci/openjdk:11.0.3-jdk-stretch # ...with this image as the primary container; this is where all `steps` will run | |
steps: # a collection of executable commands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2.1 | |
jobs: # a collection of steps | |
build: # runs not using Workflows must have a `build` job as entry point | |
working_directory: ~/circleci-pet-clinic # directory where steps will run | |
docker: # run the steps with Docker | |
- image: circleci/openjdk:11.0.3-jdk-stretch # ...with this image as the primary container; this is where all `steps` will run | |
steps: # a collection of executable commands |