Tôi cần tạo một khối lượng liên tục cho Docker. Âm lượng phải được đặt tên extra-addons
và nằm trong /mnt/
.
Tôi chạy lệnh này:
sudo docker volume create /mnt/extra-addons
Tôi nhận được thông báo lỗi này:
Error response from daemon: create /mnt/extra-addons: "/mnt/extra-addons" includes invalid characters for a local volume name, only "[a-zA-Z0-9][a-zA-Z0-9_.-]" are allowed. If you intended to pass a host directory, use absolute path
Lưu ý rằng khi tôi đơn giản chạy : sudo docker volume create extra-addons
, tôi không gặp phải vấn đề này nhưng khi tôi kiểm tra âm lượng trong câu hỏi bằng cách sử dụng sudo docker inspect extra-addons
, tôi thấy nó nằm ở nơi tôi không muốn:
[
{
"CreatedAt": "2018-04-21T14:40:25+03:00",
"Driver": "local",
"Labels": {},
"Mountpoint": "/var/lib/docker/volumes/extra-addons/_data",
"Name": "extra-addons",
"Options": {},
"Scope": "local"
}
]
Ý tôi là tôi muốn xem âm lượng như thế này: /mnt/extra-addons
Bất kỳ ý tưởng?