We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87b5630 commit 20a0940Copy full SHA for 20a0940
.github/workflows/image.yml
@@ -11,7 +11,7 @@ jobs:
11
packages: write
12
contents: read
13
steps:
14
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
15
16
# Sets the latest release tag to env variable ${{ env.LATEST_RELEASE }}
17
- name: Get latest release tag
index.php
@@ -35,6 +35,12 @@ function _callParent($function, $args) {
35
exit;
36
}
37
38
+ if (basename($_SERVER['DOCUMENT_URI'] ?? $_SERVER['REQUEST_URI']) === 'healthz') {
39
+ header('Content-Type: text/plain');
40
+ echo 'OK';
41
+ exit;
42
+ }
43
+
44
function adminer_object() {
45
return \docker\adminer_object();
46
0 commit comments