File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5
5
# or first arg is `-f` or `--some-option`
6
6
if [ " $# " -eq 0 -o " ${1# -} " != " $1 " ]; then
7
7
# add our default arguments
8
- set -- docker daemon \
8
+ set -- dockerd \
9
9
--host=unix:///var/run/docker.sock \
10
10
--host=tcp://0.0.0.0:2375 \
11
11
--storage-driver=vfs \
12
12
" $@ "
13
13
fi
14
14
15
- if [ " $1 " = ' docker ' -a " $2 " = ' daemon ' ]; then
15
+ if [ " $1 " = ' dockerd ' ]; then
16
16
# if we're running Docker, let's pipe through dind
17
17
# (and we'll run dind explicitly with "sh" since its shebang is /bin/bash)
18
18
set -- sh " $( which dind) " " $@ "
Original file line number Diff line number Diff line change 5
5
# or first arg is `-f` or `--some-option`
6
6
if [ " $# " -eq 0 -o " ${1# -} " != " $1 " ]; then
7
7
# add our default arguments
8
- set -- docker daemon \
8
+ set -- dockerd \
9
9
--host=unix:///var/run/docker.sock \
10
10
--host=tcp://0.0.0.0:2375 \
11
11
--storage-driver=vfs \
12
12
" $@ "
13
13
fi
14
14
15
- if [ " $1 " = ' docker ' -a " $2 " = ' daemon ' ]; then
15
+ if [ " $1 " = ' dockerd ' ]; then
16
16
# if we're running Docker, let's pipe through dind
17
17
# (and we'll run dind explicitly with "sh" since its shebang is /bin/bash)
18
18
set -- sh " $( which dind) " " $@ "
Original file line number Diff line number Diff line change 5
5
# or first arg is `-f` or `--some-option`
6
6
if [ " $# " -eq 0 -o " ${1# -} " != " $1 " ]; then
7
7
# add our default arguments
8
- set -- docker daemon \
8
+ set -- dockerd \
9
9
--host=unix:///var/run/docker.sock \
10
10
--host=tcp://0.0.0.0:2375 \
11
11
--storage-driver=vfs \
12
12
" $@ "
13
13
fi
14
14
15
- if [ " $1 " = ' docker ' -a " $2 " = ' daemon ' ]; then
15
+ if [ " $1 " = ' dockerd ' ]; then
16
16
# if we're running Docker, let's pipe through dind
17
17
# (and we'll run dind explicitly with "sh" since its shebang is /bin/bash)
18
18
set -- sh " $( which dind) " " $@ "
You can’t perform that action at this time.
0 commit comments