GitLab Runner building Docker image is out of space

#10 2.041 Warning: More space needed than available: 490 kB > 0 B, installation may fail#10 2.041 Error: You don’t have enough free space in /var/cache/apt/archives/. Checking /var/lib/docker, it is indeed low on space: $ sudo du -sh /var/lib/docker2.0M /var/lib/docker Cleaned up some free space with: docker system prune –all –force Reclaimed an additional 5GB, …

curl local Docker Registry to query images and tags

I’m running a local Docker Registry at 10.0.10.3:5000. To query images in the registry using curl, use: ❯ curl 10.0.10.3:5000/v2/_catalog{“repositories”:[“adsb-dashboard”]} ❯ curl 10.0.10.3:5000/v2/adsb-dashboard/tags/list{“name”:”adsb-dashboard”,”tags”:[“0.0.1″,”latest”]}

GitLab Runner with Docker executor: “client version 1.43 is too old”

Setting up a Docker image build in my GitLab ci I got this error: ERROR: Error response from daemon: client version 1.43 is too old. Minimum supported API version is 1.44, please upgrade your client to a newer version: driver not connecting Docker version on the VM running the GitLab Runner: $ docker –versionDocker version …