Merge branch 'master' of github.com:benzine-framework/docker

This commit is contained in:
Greyscale 2024-01-04 14:07:49 +01:00
commit 650244e6d0
No known key found for this signature in database
GPG key ID: 74BAFF55434DA4B2
13 changed files with 23 additions and 24 deletions

View file

@ -18,7 +18,7 @@ on:
jobs:
bouncer-build:
name: "Bake Bouncer Container"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -18,7 +18,7 @@ on:
jobs:
build:
name: "Bake Laravel Container"
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
@ -49,7 +49,7 @@ jobs:
latest:
name: "Bake Laravel Container"
runs-on: self-hosted
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: docker/login-action@v2

View file

@ -19,7 +19,7 @@ jobs:
build:
name: "Build Marshall"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -18,7 +18,7 @@ on:
jobs:
MQTT-build:
name: "MQTT"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -18,7 +18,7 @@ on:
jobs:
node-build-flavours:
name: "Build Node Flavours"
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:

View file

@ -12,7 +12,7 @@ on:
jobs:
octoprint-build:
name: "Bake Octoprint"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2
@ -33,7 +33,7 @@ jobs:
tags: matthewbaggett/octoprint:latest
octoprint-mjpg-build:
name: "Bake Octoprint for yuvu cameras"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -20,7 +20,7 @@ jobs:
php-build-core:
name: "Build PHP Core"
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:

View file

@ -21,7 +21,7 @@ on:
jobs:
php-build-flavours:
name: "Build PHP Flavours"
runs-on: self-hosted
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:

View file

@ -12,7 +12,7 @@ on:
jobs:
php-vanity-tags:
name: Vanity Tags
runs-on: self-hosted
runs-on: ubuntu-latest
env:
latest-stable-version: "8.2"
strategy:

View file

@ -18,7 +18,7 @@ on:
jobs:
redis-build:
name: "Redis with Healthchecks"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -9,7 +9,7 @@ on:
jobs:
build:
name: Build Swarm Monitor
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3

View file

@ -18,7 +18,7 @@ on:
jobs:
build:
name: "Bake Wordpress Container"
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: docker/setup-qemu-action@v2

View file

@ -304,7 +304,7 @@ class BouncerTarget
return true;
}
// $this->logger->debug(sprintf('%s isEndpointValid: %s is a hostname does not resolve', Emoji::magnifyingGlassTiltedRight(), $this->getEndpointHostnameOrIp()));
$this->logger->warning(sprintf('%s isEndpointValid: %s is a hostname that does not resolve', Emoji::magnifyingGlassTiltedRight(), $this->getEndpointHostnameOrIp()));
return false;
}
@ -564,16 +564,15 @@ class Bouncer
// $this->logger->debug(sprintf('Decided that %s has the target path %s', $bouncerTarget->getName(), $bouncerTarget->getTargetPath()));
$valid = $bouncerTarget->isEndpointValid();
// $this->logger->debug(sprintf(
// '%s Decided that %s has the endpoint %s and it %s.',
// Emoji::magnifyingGlassTiltedLeft(),
// $bouncerTarget->getName(),
// $bouncerTarget->getEndpointHostnameOrIp(),
// $valid ? 'is valid' : 'is not valid'
// ));
if ($valid) {
if ($bouncerTarget->isEndpointValid()) {
$bouncerTargets[] = $bouncerTarget;
}else{
$this->logger->debug(sprintf(
'%s Decided that %s has the endpoint %s and it is not valid.',
Emoji::magnifyingGlassTiltedLeft(),
$bouncerTarget->getName(),
$bouncerTarget->getEndpointHostnameOrIp(),
));
}
}
}