diff --git a/config/app.php b/config/app.php index 75f044eb..1ae23b08 100644 --- a/config/app.php +++ b/config/app.php @@ -27,7 +27,7 @@ */ //'version' => app('git.version'), - 'version' => '5.5.2', + 'version' => '5.5.3', /* |-------------------------------------------------------------------------- diff --git a/storage/global/docker-compose.yml b/storage/global/docker-compose.yml index ee01d72d..77ecd177 100644 --- a/storage/global/docker-compose.yml +++ b/storage/global/docker-compose.yml @@ -7,8 +7,8 @@ services: cap_add: - NET_ADMIN ports: - - 53:53/udp - - 53:53/tcp + - '53:53/udp' + - '53:53/tcp' network_mode: bridge dns-internal: image: andyshinn/dnsmasq:latest @@ -35,7 +35,7 @@ services: ports: - 3306:3306 healthcheck: - test: mysqladmin ping -h mysql -u root --password=$$MYSQL_PASSWORD + test: mysqladmin ping -h mysql -u root --password=$$MYSQL_ROOT_PASSWORD timeout: ${TRIBE_HC_TIMEOUT:-60s} interval: ${TRIBE_HC_INTERVAL:-10s} retries: 60 diff --git a/storage/migrations/2021_07_10_223329_update_global_compose.php b/storage/migrations/2022_01_17_190026_update_global_compose_health_check.php similarity index 96% rename from storage/migrations/2021_07_10_223329_update_global_compose.php rename to storage/migrations/2022_01_17_190026_update_global_compose_health_check.php index ab685294..8996b6bd 100644 --- a/storage/migrations/2021_07_10_223329_update_global_compose.php +++ b/storage/migrations/2022_01_17_190026_update_global_compose_health_check.php @@ -3,7 +3,7 @@ use App\Services\Migrations\Migration; use Symfony\Component\Console\Output\OutputInterface; -final class UpdateGlobalCompose extends Migration { +final class UpdateGlobalComposeHealthCheck extends Migration { /** * @var \Symfony\Component\Filesystem\Filesystem;