while I am trying to push to a pivotal web service I am using cf and getting
bash: cf: command not found error. Do I need to added any configuration for pivotal CLI in bit bucket ?
image: maven:3.3.9
My yml file looks like
image: maven:3.3.9
pipelines:
default:
- step:
caches:
- maven
script: # Modify the commands below to build your repository.
- mvn -B verify # -B batch mode makes Maven less verbose
- cf login -a https://api.run.pivotal.io -u 8888 -p 8888
- cf push
Hello,
You plan is executed in a docker. You provide the maven:3.3.9 image and I guess, there is no cf command there. That is why you have to find the appropriate image with the cf command or try to install cf command in the current image.
I want to know what is the image for cloud foundry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can find in the internet. but I doubt that there is maven installed. You would need to install later maven into this image.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.