8 lines
75 B
Bash
Executable File
8 lines
75 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Run dockerd
|
|
dockerd -s vfs &> /dev/null &
|
|
|
|
exec bash
|