mirror of
https://github.com/ysoftdevs/terraform-provider-bitbucketserver.git
synced 2026-05-08 00:43:42 +02:00
fix(repository_deploy_keys): Make deploy keys compatible to bitbucket-dc-lts
For some reason this api does return ints, where it is supposed to return strings in older LTS versions.
This commit is contained in:
@@ -2,7 +2,7 @@ version: '2'
|
||||
|
||||
services:
|
||||
bitbucket:
|
||||
image: atlassian/bitbucket-server:8.5-ubuntu-jdk11
|
||||
image: atlassian/bitbucket:9.4.2-jdk21
|
||||
restart: always
|
||||
networks:
|
||||
- bridge
|
||||
|
||||
@@ -6,7 +6,7 @@ cd ${DIR}
|
||||
|
||||
if [ ! -f ${DIR}/docker-compose ]; then
|
||||
echo "--> Downloading docker-compose"
|
||||
curl -L https://github.com/docker/compose/releases/download/1.20.1/docker-compose-`uname -s`-`uname -m` > ${DIR}/docker-compose
|
||||
curl -L https://github.com/docker/compose/releases/download/v2.34.0/docker-compose-`uname -s`-`uname -m` > ${DIR}/docker-compose
|
||||
chmod +x ${DIR}/docker-compose
|
||||
fi
|
||||
|
||||
|
||||
Reference in New Issue
Block a user