ฉันต้องสร้างโวลุ่มแบบถาวรสำหรับ Docker ปริมาณการซื้อขายจะต้องมีชื่อและตั้งอยู่ในextra-addons
/mnt/
ฉันรันคำสั่งนี้:
sudo docker volume create /mnt/extra-addons
ฉันได้รับข้อความแสดงข้อผิดพลาดนี้:
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
โปรดทราบว่าเมื่อฉันรันเพียง: sudo docker volume create extra-addons
ฉันไม่ประสบปัญหานี้ แต่เมื่อฉันตรวจสอบระดับเสียงที่เป็นปัญหาโดยใช้sudo docker inspect extra-addons
ฉันเห็นว่ามันอยู่ในสถานที่ที่ฉันไม่ต้องการ:
[
{
"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"
}
]
ฉันหมายถึงฉันต้องการที่จะเห็นปริมาณเช่นนี้: /mnt/extra-addons
ความคิดใด ๆ