mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 06:35:40 +03:00
8 lines
148 B
Bash
8 lines
148 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$DOCKER_IN_DOCKER" = "start" ] ; then
|
||
|
rm /var/run/docker.pid 2>/dev/null
|
||
|
service docker start
|
||
|
echo "Docker daemon started"
|
||
|
fi
|