skip to Main Content

Docker – Bitbucket pipeline err

getting the below error in my pipeline. Can anyone help me on this ? Am trying the deploy my ecs service via bitbucket pipelines but facing this error. I tried updating docker, pip, docker-compose everything but no luck current versions:…

VIEW QUESTION

How to access to a Docker container in a Bitbucket pipeline

My Maven Java project needs to execute integration test in the following Bitbucket pipeline: learn-pipeline: - step: name: purpose merely learning about how pipeline is working services: - docker script: - docker run --detach --name some-mariadb --env MARIADB_ALLOW_EMPTY_ROOT_PASSWORD=1 --env MARIADB_DATABASE=test…

VIEW QUESTION

Load key "/root/.ssh/pipelines_id": invalid format – Ubuntu

I am using bitbucket pipeline to deploy app on a ec2-server. here is my bitbucket-pipelines.yaml file image: atlassian/default-image:3 pipelines: branches: dev: - step: name: automated deployment script: - pipe: atlassian/scp-deploy:1.2.1 variables: USER: 'ubuntu' SERVER: $SERVER_IP REMOTE_PATH: '/home/ubuntu/utags-test/server' LOCAL_PATH: '${BITBUCKET_CLONE_DIR}/*' -…

VIEW QUESTION

Staging deployment with Bitbucket pipeline and Azure Static Web App

I could successfully deploy my project into the production environment using the provided documentation https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/static-web-apps/bitbucket.md pipelines: branches: main: - step: name: Deploy to test deployment: test script: - pipe: microsoft/azure-static-web-apps-deploy:main variables: APP_LOCATION: '$BITBUCKET_CLONE_DIR' OUTPUT_LOCATION: '$BITBUCKET_CLONE_DIR/dist' API_TOKEN: $deployment_token​ But there are…

VIEW QUESTION
Back To Top
Search