DEV Community

Cover image for gitlab runner error: No such image
Julian
Julian

Posted on • Updated on

gitlab runner error: No such image

if you run your own gitlab runner and you get the error message ERROR: Preparation failed: Error: No such image: mariadb:10.1 (executor_docker.go:175:0s) it can have multiple reasons.

sometimes the solution really can be very easy. in my case the error message was not really helpful but the soltuion was quickly to find. the server ran out of harddisk space, which can happen if you use lvm with extra small partitions like me.

ERROR: Preparation failed: Error: No such image: mariadb:10.1 (executor_docker.go:175:0s)
Will be retried in 3s ...
Using Docker executor with image c33s/php:7.1 ...
Starting service mariadb:10.1 ...
Pulling docker image mariadb:10.1 ...
ERROR: Preparation failed: Error: No such image: mariadb:10.1 (executor_docker.go:175:0s)
Will be retried in 3s ...
Using Docker executor with image c33s/php:7.1 ...
Starting service mariadb:10.1 ...
Pulling docker image mariadb:10.1 ...
ERROR: Preparation failed: Error: No such image: mariadb:10.1 (executor_docker.go:175:0s)
Will be retried in 3s ...
ERROR: Job failed (system failure): Error: No such image: mariadb:10.1 (executor_docker.go:175:0s)

links:

Latest comments (0)