mirror of
https://github.com/System-End/spaces.git
synced 2026-04-19 16:38:24 +00:00
10 lines
No EOL
267 B
Bash
10 lines
No EOL
267 B
Bash
#!/bin/bash
|
|
|
|
if docker info >/dev/null 2>&1; then
|
|
echo "Docker is available."
|
|
else
|
|
echo "Warning: Docker not available. Make sure Docker is running."
|
|
fi
|
|
|
|
# Start all services with supervisor
|
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf |