mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
15 lines
250 B
Bash
Executable File
15 lines
250 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
fsdriver=$(grep -Eh -w -m1 "overlay|aufs" /proc/filesystems | cut -f2)
|
|
if [ $fsdriver == "overlay" ]; then
|
|
fsdriver="overlay2"
|
|
fi
|
|
|
|
dockerd-entrypoint.sh --storage-driver=$fsdriver &
|
|
|
|
# give docker a few seconds
|
|
sleep 3
|
|
|
|
exec "$@"
|