mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 06:20:14 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/8bfb1fa8-7878-434e-ab4d-1034067e5ad0 Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
11 lines
214 B
Bash
11 lines
214 B
Bash
#!/bin/bash
|
|
|
|
# Wait for PostgreSQL to accept connections
|
|
until pg_isready -h /var/run/postgresql -q 2>/dev/null; do
|
|
echo "Waiting for PostgreSQL to be ready..."
|
|
sleep 2
|
|
done
|
|
|
|
# Start Windmill
|
|
exec windmill
|