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!
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.