Sfoglia il codice sorgente

fix repo override

tags/v1.4.16
Jonathan Cobb 4 anni fa
parent
commit
2a263cbad5
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. +4
    -1
      docker/bubble.sh

+ 4
- 1
docker/bubble.sh Vedi File

@@ -40,7 +40,10 @@ VERSION="${2:-$(cat ${META_FILE} | grep bubble.version | awk -F '=' '{print $2}'
if [[ -z "${VERSION}" ]] ; then
die "Error determining version from: ${META_FILE}"
fi
DOCKER_REPO=${BUBBLE_DOCKER_REPO?getbubble/launcher}
DOCKER_REPO="getbubble/launcher"
if [[ ! -z "${BUBBLE_DOCKER_REPO}" ]] ; then
DOCKER_REPO="${BUBBLE_DOCKER_REPO}"
fi
BUBBLE_TAG="${DOCKER_REPO}:${VERSION}"

BUBBLE_ENV="${HOME}/.bubble.env"


Caricamento…
Annulla
Salva