On Tuesday, May 19, 2020 at 9:37:03 PM UTC+2, Martin Krc wrote: > > Hi, > > I am using Docker ToolBox on my Windows (Home) machine. I tried to deploy > ArangoDB there today, but did not manage to do it in the way that keeps > data between restarts of the docker virtual machine. The problem is that > when I connect a folder within the virtual machine to a real folder, > ArangoDB will complain about file system upon startup (mentioning NFS). My > question: Is there any way how to get around this issue? >
Hello. I was wondering what this has to do with docker on windows or the fact of what the virtual machine does or doesn't? You should have to bother with that. That should be seamless. In order to handle persisting data, simply run the docker container with a volume mount like this: -v /tmp/arangodb:/var/lib/arangodb3 You can find more instruction on how to send in things on arangodb's docker hub page here: https://hub.docker.com/_/arangodb Cheers, Gergely. > Martin > -- You received this message because you are subscribed to the Google Groups "ArangoDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/arangodb/1d6bfc81-08c8-4cd6-bf0f-32d4cb945728%40googlegroups.com.
