Hi community! I’m trying to set up Bitbucket using Docker Compose and enable clustering. However, I keep seeing the following message in the logs: com.hazelcast.instance.impl.Node [172.28...
Hi everyone, I had Jira running on my old Linux server (installed directly on the system). Now I’m trying to move it to a new server running Docker. testing in local server with docker compose .&n...
I use a docker service in my pipelines to build images. I see that it starts the daemon without the containerd snapshotter: msg="Docker daemon" commit=e63daec containerd-snapshotter=false storage-d...
Hi! I'm new to Bitbucket Pipelines and not sure how to go about this use case. When a new PR is opened I want to trigger my pipeline. The one task I need my pipeline to do is run my docker i...
Hello all, we are working on setting up a Confluence cluster in AWS using ECS containers. We have the environment set up, but now we're looking at upgrade path approaches for both minor and major ver...
Hello everyone, we are working on a proof of concept containerizing Confluence using the Atlassian Docker image in AWS ECS. We are working with an existing RDS instance cloned from our Test e...
I was reading the documentation here (https://support.atlassian.com/bitbucket-cloud/docs/run-docker-commands-in-bitbucket-pipelines/#Enable-Docker-BuildKit) and I noticed an apparent discrepancy.&n...
i'm trying to build a docker image for emr serverless arm image and when I do the build on bamboo it gives errors on all RUN steps in the docker file. when I remove the arm source image a...
This is a docker compose script running 3 containers on BitBucket pipelines cloud runner I'm seeing this error on my pipeline when using a Docker compose. I've seen posts already online about u...
Hello Team, Facing the issue container 'docker' exceeded memory limit in Bitbucket pipeline even after mentioning size 2x for Sonarscan. We are using Bitbucket runners. - step: &sonarscan &n...
Hello, I have the following use-case: I have a self-hosted runner on an EC2. The runner is in docker on that EC2. In the pipeline I have one step with "runs-on: test" <- the tag from m...
I have pipeline as definitions: services: docker: memory: 3072 pipelines: branches: build-*: - step: services: - docker c...
To test my repo, I need to run: ``` docker compose build docker compose up -d ``` inside the pipeline. I also need Python 3.11. First, I am not sure what image to use. After several a...
I want to do a docker compose build and the related Dockerfile is a multi staged dockerfile. But I'm trapped here with the limits of bitbucket pipelines. For using docker compose build, i have to d...
We want to share the docker build cache across our pipeline steps. Therefore we want to use the cache_to option from docker build specification. Currently this is not possible, because we n...
I have a fresh install of both Bamboo in Docker (7.2.2) (old version is needed) and the latest Bamboo Remote Agent also in Docker. The agent fails to start with error: com.atlassian.bamboo...
I'm trying to build a base image for the pipeline with pre-installed dependencies. I'm using a multistage build approach in a Dockerfile like this: base.dockerfile FROM python:$PYTHON_BASE AS b...
I am running my playwright on edge,chrome,safari & firefox browsers using bitbucket pipeline. Some tests are randomly failing due to timeout sometimes on fiefox or chrome even though suff...
Hi, I am trying to create a custom image from a docker file however it is throwing the below error: ERROR [internal] load metadata for docker.io/library/maven:3.8.6-jdk-11 &n...
Hi all, We are working on a Jira Datacenter hosted on a Docker image (jira-software:9.12.13-ubuntu-jdk11) with nginx image as a proxy (with 443 and ssl on it). We have the warning of the gadget f...
...xecution failed for task ':publishToConfluence'. > something went wrong - request failed (response: 500 handshakefailed, reason: <none>) We are using the following docker version of d...
I am trying to build and run a remote bamboo agent (based from atlassian/bamboo-agent-base) and install podman to have the capability of (rootless) building docker images with this agent. U...
I am building a php docker container that uses a Dockerfile.dockerignore file to only allow php files inside the container. The dockerignore file contains only two lines: project/**/* !*/**/*.php...
Docker Hub had a security breach during which OAuth credentials "may" have been exposed, presumably for all Docker accounts. Their email mentions that they identified the issue on 2024.09.24, but t...
Hi, I have a public docker image that when being used on my computer I do the following: docker run --rm -it espressif/idf:v4.4.7 Note the -it flag. If I run this docker command I...