actions-setup-docker
actions-setup-docker copied to clipboard
Set up your GitHub Actions workflow with a specific version(18.09,19.03,20.10,nightly) of Docker ON Linux/macOS
Caching should reduce failures. I think third party actions supports caching. In any case this implements caching at MacOS for the docker dmg. ``` - name: 'SETUP MacOS: load Homebrew...
I got another different error. I killed the process myself because it was running for 40 minutes without any luck. ``` 2022-09-21T08:41:00.8924440Z + /Applications/Docker.app/Contents/Resources/bin/docker system info 2022-09-21T08:41:01.1322920Z + (( i++...
I sometimes get this error: ``` 2022-09-21T08:29:55.9163020Z ##[group]install docker 2022-09-21T08:29:55.9264530Z [command]/usr/local/bin/wget https://raw.githubusercontent.com/Homebrew/homebrew-cask/fe866ec0765de141599745f03e215452db7f511b/Casks/docker.rb 2022-09-21T08:29:55.9968810Z --2022-09-21 08:29:55-- https://raw.githubusercontent.com/Homebrew/homebrew-cask/fe866ec0765de141599745f03e215452db7f511b/Casks/docker.rb 2022-09-21T08:29:56.0269100Z Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 185.199.108.133, 185.199.109.133, 185.199.110.133, ... 2022-09-21T08:29:56.0369610Z Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|185.199.108.133|:443... connected....
Is there any options/environments we can use to support rootless docker setup? for example, to allow `systemctl start --user docker`
I tried: ``` - name: Install Docker uses: docker-practice/actions-setup-docker@master with: docker_version: 25.0.4 docker_daemon_json: "{\"hosts\": [\"tcp://0.0.0.0:2375\", \"unix:///var/run/docker.sock\"]}" ``` But it didn't work ``` check docker version check docker systemd status show...
Increased timeout for docker start from 180s to 600s. Have done it because sometimes 180s is not enough for github macOs runners. E.g [run](https://github.com/tarantool/tt/actions/runs/4796195342/jobs/8533143096), [run](https://github.com/tarantool/tt/actions/runs/4766015954/jobs/8472482111).
Thanks for the great GitHub action! Since a while, I get the following warning in all runs that use your action. ``` Node.js 16 actions are deprecated. Please update the...
I'm using docker-practice/actions-setup-docker@master on **macos-12**. Sometimes the actions fails with error: `Error: The process '/usr/bin/sudo' failed with exit code 1` during the execution of **wait docker running** group for timing...
Fixes #30