spaces/start.sh
2025-11-02 10:26:44 -05:00

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