Skip to content

Commit 0ccc9e8

Browse files
committed
fix: correct dockerd storage driver parameter name
This fixes commit ce69352, where the dockerd parameter was incorrectly specified as `--storage-engine`. The correct parameter name is `--storage-driver`. Signed-off-by: James Curtis <jxcurtis@amazon.co.uk>
1 parent ce69352 commit 0ccc9e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/functions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ function validate_version {
132132

133133
# Wait for dockerd to come up in devctr
134134
prepare_docker() {
135-
nohup /usr/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-engine=vfs &
135+
nohup /usr/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-driver=vfs &
136136

137137
# Wait for Docker socket to be created
138138
timeout 15 sh -c "until docker info; do echo .; sleep 1; done"

0 commit comments

Comments
 (0)