Hello, i'm running a pipeline that looks like this:
`image: docker/compose:1.24.0
options: docker: true
pipelines:
default:
- step: name: test
caches:
- docker
- composer
services:
- docker
script:
- docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d
- docker-compose -f docker-compose.yml -f docker-compose.dev.yml exec web ./test all
- docker-compose -f docker-compose.yml -f docker-compose.dev.yml down -v
`
but i get the following error:
<span>Creating build_db_1 ... </span><span>Creating build_db_1 ... </span><span>error</span><span>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</span><span>ERROR: for db Cannot create container for service db: authorization denied by plugin pipelines: -v only supports $BITBUCKET_CLONE_DIR and its subdirectories</span><span>Encountered errors while bringing up the project.</span><span>Image for service web was built because it did not already exist. To rebuild this image you must use `docker-compose build` or `docker-compose up --build`.</span>
my docker-compose file contains a DB service that looks like this:
`
db:
image: bitnami/postgresql:11
ports:
- 5432
environment:
- POSTGRESQL_USERNAME=${POSTGRES_USER:-random}
- POSTGRESQL_PASSWORD=${POSTGRES_PASSWORD:-random}
- POSTGRESQL_DATABASE=${POSTGRES_DATABASE:-random}
volumes:
- pgdata_folder:/bitnami/postgresql
- ./utility:/utility
networks:
- backend
`
Any idea on what is this problem exactly about or how to fix it? the descfription does not make sense to me at all