mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 11:35:56 +08:00
10 lines
289 B
Bash
10 lines
289 B
Bash
#!/bin/bash
|
|
|
|
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 8443 || exit 1
|
|
nc -z localhost 9000 || exit 1
|
|
nc -z localhost 9876 || exit 1
|
|
fi
|