mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-20 06:26:57 +00:00
Merge pull request #3186 from nextcloud/enh/3183/improve-healthcheck
mastercontainer - improve healthcheck
This commit is contained in:
commit
4aa9a9a5be
1 changed files with 5 additions and 0 deletions
|
|
@ -1,5 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ -f "/mnt/docker-aio-config/data/configuration.json" ]; then
|
if [ -f "/mnt/docker-aio-config/data/configuration.json" ]; then
|
||||||
|
nc -z localhost 80 || exit 1
|
||||||
|
nc -z localhost 8000 || exit 1
|
||||||
nc -z localhost 8080 || exit 1
|
nc -z localhost 8080 || exit 1
|
||||||
|
nc -z localhost 8443 || exit 1
|
||||||
|
nc -z localhost 9000 || exit 1
|
||||||
|
nc -z localhost 9876 || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue