当我想在 Windows 上构建图像时,我遇到了一个奇怪的问题。我没有将Docker用于其他任何东西,所以安装可以认为是全新的。根本没有卷,也没有图像。
当我试图从我的 Dockerfile 构建我的应用程序时,它以这个错误结束
docker build ./
Sending build context to Docker daemon 1.4 GB
Error response from daemon: Error processing tar file(exit status 1): write /.bowerrc: no space left on device
我已经读到您可以增加 docker 的基本大小,但我还没有找到适用于 Windows 的解决方案(为什么这在默认情况下会受到限制?)
docker info
打印一些东西,但它根本没有在“存储驱动程序”下显示任何关于基本大小的信息
$ docker info
Containers: 0
Running: 0
Paused: 0
Stopped: 0
Images: 0
Server Version: 1.13.1
Storage Driver: overlay2
Backing Filesystem: tmpfs
Supports d_type: true
Native Overlay Diff: true
Logging Driver: json-file
Cgroup Driver: cgroupfs
Plugins:
Volume: local
Network: bridge host ipvlan macvlan null overlay
Swarm: inactive
Runtimes: runc
Default Runtime: runc
Init Binary: docker-init
containerd version: aa8187dbd3b7ad67d8e5e3a15115d3eef43a7ed1
runc version: 9df8b306d01f59d3a8029be411de015b7304dd8f
init version: 949e6fa
Security Options:
seccomp
Profile: default
Kernel Version: 4.9.8-moby
Operating System: Alpine Linux v3.5
OSType: linux
Architecture: x86_64
CPUs: 2
Total Memory: 1.934 GiB
Name: moby
ID: GUXQ:KPKS:PHBV:BMEF:QHHM:B2YG:MWPB:2W5H:Z3GX:27YS:QBT6:O4RV
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): true
File Descriptors: 13
Goroutines: 21
System Time: 2017-02-19T20:15:57.8764828Z
EventsListeners: 0
Registry: https://index.docker.io/v1/
Experimental: true
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
根据互联网上的一些帖子,这曾经或现在是在 Linux 上的方式,但它在 Windows 上不起作用
docker daemon --storage-opt dm.basesize=20G
我的 docker 安装有什么问题,如何增加 basesize?