-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added docker detatched option #477
Conversation
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
@@ -34,6 +35,7 @@ jobs: | |||
python-version: "3.8" | |||
include: | |||
- os: windows-latest | |||
docker: "" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cant we install docker on windows non interactively?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arjunsuresh , there is command line installation method for windows in official docker website. Mybe with some workaround its possible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It works but only for Windows docker images which CM does not support currently.
attempt=1 | ||
docker --version | ||
docker info | ||
while ! docker --version > /dev/null 2>&1; do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @arjunsuresh , I think we are able to successfully obtain the output of docker --version
even though docker daemon is not running, just docker needs to be installed.
- name: Start Docker Daemon on macos | ||
if: runner.os == 'macOS-deactivated' | ||
run: | | ||
open /Applications/Docker.app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No description provided.