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