-
Notifications
You must be signed in to change notification settings - Fork 13
Description
Hello, I'd like to use infinit docker plugin.
I installed infinity on my server, i do a mount for "my-volume"
infinit user signup --name samir --fullname "Samir"
infinit silo create filesystem --name local --capacity 1GB
infinit network create --as samir --storage local --name my-network --push
infinit volume create --as samir --network my-network --name my-volume --push
infinit volume mount --as samir --name my-volume --mountpoint ~/mnt-samir-volume --allow-root-creation --cache --publish &
After i start daemon : infinit daemon run --as samir --docker-user sfathallah
when i execute : 'docker volume ls' i get
DRIVER VOLUME NAME
infinit samir/my-volume
but when i run :
docker run -it --rm --volume-driver infinit -v samir/my-volume:/var/tmp alpine ash
it display :
docker: Error response from daemon: VolumeDriver.Mount: unable to mount samir/my-volume
And daemon console show :
Remotely created endpoints for "samir/my-network".
Running volume "samir/my-volume".
[elle.reactor.network.http] [request 0x20fa3a0] HttpServer(port=0): internal error: unable to mount samir/my-volume
please, How I can solve this problem
Thanks