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
어떤 생각?