0

I am trying to upload a 2GB Docker image to the Google Container registry:

gcloud docker push eu.gcr.io/project-id/image

I get the following error:

Failed to generate layer archive: write /mnt/sda1/var/lib/docker/graph/_tmp/be959f8b6f706fb75cdc24b/28450517: no space left on device '''

Another problem I encountered is a about a failing push. It seems the upload has not worked and then I cannot push it again:

Error response from daemon: push eu.gcr.io/project-id/image is already in progress

By the way is there an option to list all images?

4

1 回答 1

1

该错误是在谈论本地设备上的空间。您应该清除本地不再需要的所有旧图像。

您可以在 Google Developers Console 中查看您的图像列表: https ://console.developers.google.com/

找到您的项目,然后选择“Compute > Container Engine > Container Registry”。截至今天,无法从 CLI 列出您的图像。

希望对您有所帮助,也请随时通过 gcr-contact@google.com 与我们联系

于 2015-06-28T16:22:49.980 回答