docker 机器上 Azure VM 的磁盘大小
Disk size for Azure VM on docker-machine
我正在使用 docker-machine
创建 Azure VM,如下所示。
docker-machine create --driver azure --azure-size Standard_DS2_v2 --azure-subscription-id #### --azure-location southeastasia --azure-image canonical:UbuntuServer:14.04.2-LTS:latest --azure-open-port 80 AwesomeMachine
按照说明 here. Azure VM docs 说 - Standard_DS2_v2
的 Max. disk size
是 100GB,
但是当我登录机器(或在这台机器上创建容器)时,我看到的最大可用磁盘大小是 30GB。
$ docker-machine ssh AwesomeMachine
docker-user@tf:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 29G 6.9G 21G 25% /
none 4.0K 0 4.0K 0% /sys/fs/cgroup
udev 3.4G 12K 3.4G 1% /dev
tmpfs 698M 452K 697M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 3.5G 1.1M 3.5G 1% /run/shm
none 100M 0 100M 0% /run/user
none 64K 0 64K 0% /etc/network/interfaces.dynamic.d
/dev/sdb1 14G 35M 13G 1% /mnt
那么Max. disk size
是什么意思呢?还有这个/dev/sdb1
是什么?可以用吗space?
我的错,我没有仔细看文档
当 --azure-size
为 Standard_DS2_v2
时,本地 SSD 磁盘 = 14 GB,即 /dev/sdb1
,而
--azure-size Standard_D2_v2
给你本地 SSD 磁盘 = 100 GB。
不删除问题以防其他人犯同样的愚蠢错误。
我正在使用 docker-machine
创建 Azure VM,如下所示。
docker-machine create --driver azure --azure-size Standard_DS2_v2 --azure-subscription-id #### --azure-location southeastasia --azure-image canonical:UbuntuServer:14.04.2-LTS:latest --azure-open-port 80 AwesomeMachine
按照说明 here. Azure VM docs 说 - Standard_DS2_v2
的 Max. disk size
是 100GB,
但是当我登录机器(或在这台机器上创建容器)时,我看到的最大可用磁盘大小是 30GB。
$ docker-machine ssh AwesomeMachine
docker-user@tf:~$ df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda1 29G 6.9G 21G 25% /
none 4.0K 0 4.0K 0% /sys/fs/cgroup
udev 3.4G 12K 3.4G 1% /dev
tmpfs 698M 452K 697M 1% /run
none 5.0M 0 5.0M 0% /run/lock
none 3.5G 1.1M 3.5G 1% /run/shm
none 100M 0 100M 0% /run/user
none 64K 0 64K 0% /etc/network/interfaces.dynamic.d
/dev/sdb1 14G 35M 13G 1% /mnt
那么Max. disk size
是什么意思呢?还有这个/dev/sdb1
是什么?可以用吗space?
我的错,我没有仔细看文档
当 --azure-size
为 Standard_DS2_v2
时,本地 SSD 磁盘 = 14 GB,即 /dev/sdb1
,而
--azure-size Standard_D2_v2
给你本地 SSD 磁盘 = 100 GB。
不删除问题以防其他人犯同样的愚蠢错误。