fedi-feed-router/docker/build/wait-for-redis.php

11 lines
168 B
PHP
Raw Permalink Normal View History

2025-07-05 01:10:54 +02:00
#!/usr/bin/env php
<?php
try {
$redis = new Redis();
$redis->connect('redis', 6379);
echo 'Connected';
exit(0);
} catch (Exception $e) {
exit(1);
}