docker-volume-juicefs icon indicating copy to clipboard operation
docker-volume-juicefs copied to clipboard

Docker volume plugin for juicefs

Results 5 docker-volume-juicefs issues
Sort by recently updated
recently updated
newest added

docker compose comfig ```yaml version: "3" volumes: polyfill-cache: driver: juicedata/juicefs driver_opts: name: polyfill-cache metaurl: postgres://postgres:${META_PASSWORD}@meta-server:5432/juicefs storage: ${STORAGE_TYPE} bucket: ${BUCKET} access-key: ${ACCESS_KEY} secret-key: ${SECRET_KEY} networks: polyfiller: services: autoheal: image: willfarrell/autoheal:1.2.0 volumes:...

This should allow compiling the plugin for arm64 architecture. I had to change to `python:2.7` image because otherwise linking of the juicefs community edition binary is not working. I guess...

Hello, the `arm64` image for this plugin is quite old at this point (~2 years ago). Could you update it ? Thank you very much !

Hi, I trying to use juicefs with mysql to store several config files, all works fine via fuse but fails when I try to mount existing JuiceFS volume to docker...

I have created a volume using ``` juicefs format \ --storage minio \ --bucket "https://minio.edwardcc.com/juicefs" \ --access-key python \ --secret-key removed \ "mysql://root:password@(removed:3306)/juicefs" \ docker ``` format success ``` 2022/10/11...