Просмотр исходного кода

skip docker cache

tags/v1.4.46
Jonathan Cobb 4 лет назад
Родитель
Сommit
9ee56e5a14
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      docker/bubble.sh

+ 2
- 2
docker/bubble.sh Просмотреть файл

@@ -60,8 +60,8 @@ if [[ "${MODE}" == "build" ]] ; then
if [[ $(find bubble-server/target -type f -name "bubble-server-*.jar" | wc -l | tr -d ' ') -eq 0 ]] ; then
die "No bubble jar found in $(pwd)/bubble-server/target"
fi
docker build -t "${BUBBLE_TAG}" . || die "Error building docker image"
docker build -f Dockerfile.slim -t "${BUBBLE_SLIM_TAG}" . || die "Error building slim docker image"
docker build --no-cache -t "${BUBBLE_TAG}" . || die "Error building docker image"
docker build --no-cache -f Dockerfile.slim -t "${BUBBLE_SLIM_TAG}" . || die "Error building slim docker image"

elif [[ "${MODE}" == "run" ]] ; then
if [[ $(cat "${BUBBLE_ENV}" | grep -v '^#' | grep -c LETSENCRYPT_EMAIL) -eq 0 ]] ; then


Загрузка…
Отмена
Сохранить