Skip to content

Commit

Permalink
Fix mysql ping command, filling logs with [Warning] Access denied for…
Browse files Browse the repository at this point in the history
… user 'root'@'172.20.10.200' (using password: NO) (#104)
  • Loading branch information
defunctl authored Jan 18, 2022
1 parent f0245e9 commit 8042472
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
*/

//'version' => app('git.version'),
'version' => '5.5.2',
'version' => '5.5.3',

/*
|--------------------------------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions storage/global/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8042472

Please sign in to comment.