mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-12-20 02:18:37 +00:00
14 lines
174 B
Bash
Executable File
14 lines
174 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Run dockerd
|
|
dockerd -s vfs &> /dev/null &
|
|
|
|
if CMD="$(command -v "$1")"; then
|
|
shift
|
|
exec "$CMD" "$@"
|
|
else
|
|
echo "Command not found: $1"
|
|
exit 1
|
|
fi
|