You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi!, I created a simple pipeline to run "docker-compose up" and then "docker-compose down", everything is correct, the images get build correctly, but it throws an error when is going to create the container. the error is:
ERROR: for build_db_1 Cannot create container for service db: authorization denied by plugin pipelines: -v only supports $BITBUCKET_CLONE_DIR and its subdirectories
I have no clue of what this means. The pipeline is the following:
image: docker:stable
options:
docker: true
pipelines:
default:
- step:
script:
- chmod 777 ci/dependencies.sh
- ci/dependencies.sh
- docker-compose up -d --build
- docker-compose down
dependencies.sh
#!/usr/bin/env sh
set -eu
# Add python pip and bash
apk add --no-cache py-pip bash
# Install docker-compose via pip
pip install --no-cache-dir docker-compose
docker-compose -v
What is this error telling me? Thank you!
Hi Carlos,
There are some restrictions on which docker options you're allowed to use in Pipelines (necessary to maintain security in the shared Pipelines environment). Your docker compose configuration is attempting to map a volume with a source that's outside your build directory (see Running Docker Commands on this page for a full list of restrictions: https://confluence.atlassian.com/bitbucket/run-docker-commands-in-bitbucket-pipelines-879254331.html).
What does your docker-compose.yml file look like?
Cheers,
Steven
I have the same problem
Here is how my docker-compose looks like
version: '3'
services:
mosquitto:
build: .
volumes:
- mosquitto_data:/mosquitto/data
- mosquitto_log:/mosquitto/log
expose:
- 1883
- 9001
ports:
- 9001:9001
- 1883:1883
I have even set my repository variables
`BITBUCKET_CLONE_DIR` to be ` / `
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey there, I posted my workaround to this issue here:
https://community.atlassian.com/t5/Bitbucket-questions/Bitbucket-pipelines-How-can-I-share-a-volume-between-two/qaq-p/1212083#M56779
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, We are looking to learn more about development teams’ workflows and pain points, especially around DevOps, integrations, administration, scale, security, and the related challeng...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.